Update
This commit is contained in:
parent
0b5e1bb0a7
commit
25b2118d49
|
@ -1,4 +1,4 @@
|
|||
# RUN="sudo"
|
||||
# PARAM="/usr/bin/pacman -Syu --needed --noconfirm"
|
||||
# RUN="/usr/bin/pacman"
|
||||
# PARAM="/usr/bin/pacman -Syu --needed --noconfirm --noprogressbar"
|
||||
RUN="find"
|
||||
PARAM=".git"
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
*out
|
||||
*logs
|
||||
*actions
|
||||
*notifications
|
||||
*tools
|
||||
plugins
|
||||
user_trunk.yaml
|
||||
user.yaml
|
||||
tmp
|
|
@ -0,0 +1,2 @@
|
|||
# Prettier friendly markdownlint config (all formatting rules disabled)
|
||||
extends: markdownlint/style/prettier
|
|
@ -0,0 +1 @@
|
|||
edition = "2021"
|
|
@ -0,0 +1,7 @@
|
|||
enable=all
|
||||
source-path=SCRIPTDIR
|
||||
disable=SC2154
|
||||
|
||||
# If you're having issues with shellcheck following source, disable the errors via:
|
||||
# disable=SC1090
|
||||
# disable=SC1091
|
|
@ -0,0 +1,14 @@
|
|||
module.exports = {
|
||||
plugins: [
|
||||
{
|
||||
name: "preset-default",
|
||||
params: {
|
||||
overrides: {
|
||||
removeViewBox: false, // https://github.com/svg/svgo/issues/1128
|
||||
sortAttrs: true,
|
||||
removeOffCanvasPaths: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
|
@ -0,0 +1,39 @@
|
|||
# This file controls the behavior of Trunk: https://docs.trunk.io/cli
|
||||
# To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
|
||||
version: 0.1
|
||||
cli:
|
||||
version: 1.22.0
|
||||
# Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins)
|
||||
plugins:
|
||||
sources:
|
||||
- id: trunk
|
||||
ref: v1.5.0
|
||||
uri: https://github.com/trunk-io/plugins
|
||||
# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
|
||||
runtimes:
|
||||
enabled:
|
||||
- go@1.21.0
|
||||
- node@18.12.1
|
||||
- python@3.10.8
|
||||
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
|
||||
lint:
|
||||
enabled:
|
||||
- clippy@1.65.0
|
||||
- dotenv-linter@3.3.0
|
||||
- git-diff-check
|
||||
- markdownlint@0.41.0
|
||||
- oxipng@9.1.1
|
||||
- prettier@3.3.2
|
||||
- rustfmt@1.65.0
|
||||
- shellcheck@0.10.0
|
||||
- shfmt@3.6.0
|
||||
- svgo@3.3.2
|
||||
- taplo@0.8.1
|
||||
- trufflehog@3.79.0
|
||||
actions:
|
||||
disabled:
|
||||
- trunk-announce
|
||||
- trunk-check-pre-push
|
||||
- trunk-fmt-pre-commit
|
||||
enabled:
|
||||
- trunk-upgrade-available
|
|
@ -10,6 +10,6 @@ edition = "2021"
|
|||
futures = "^0.3"
|
||||
fltk = { version = "^1.4", features = ["fltk-bundled"] }
|
||||
fltk-theme = "^0.7"
|
||||
tokio = { version = "^1.33", features = ["full"] }
|
||||
tokio = { version = "^1.38", features = ["full"] }
|
||||
# bytes = "^1.4"
|
||||
dotenv = "^0.15"
|
||||
|
|
Loading…
Reference in New Issue