File tree Expand file tree Collapse file tree 7 files changed +82
-0
lines changed
Expand file tree Collapse file tree 7 files changed +82
-0
lines changed Original file line number Diff line number Diff line change 1+ * out
2+ * logs
3+ * actions
4+ * notifications
5+ * tools
6+ plugins
7+ user_trunk.yaml
8+ user.yaml
9+ tmp
Original file line number Diff line number Diff line change 1+ # Following source doesn't work in most setups
2+ ignored :
3+ - SC1090
4+ - SC1091
Original file line number Diff line number Diff line change 1+ # Prettier friendly markdownlint config (all formatting rules disabled)
2+ extends : markdownlint/style/prettier
Original file line number Diff line number Diff line change 1+ enable =all
2+ source-path =SCRIPTDIR
3+ disable =SC2154
4+
5+ # If you're having issues with shellcheck following source, disable the errors via:
6+ # disable=SC1090
7+ # disable=SC1091
Original file line number Diff line number Diff line change 1+ rules :
2+ quoted-strings :
3+ required : only-when-needed
4+ extra-allowed : ["{|}"]
5+ key-duplicates : {}
6+ octal-values :
7+ forbid-implicit-octal : true
Original file line number Diff line number Diff line change 1+ export default {
2+ plugins : [
3+ {
4+ name : "preset-default" ,
5+ params : {
6+ overrides : {
7+ removeViewBox : false , // https://github.com/svg/svgo/issues/1128
8+ sortAttrs : true ,
9+ removeOffCanvasPaths : true ,
10+ } ,
11+ } ,
12+ } ,
13+ ] ,
14+ } ;
Original file line number Diff line number Diff line change 1+ # This file controls the behavior of Trunk: https://docs.trunk.io/cli
2+ # To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
3+ version : 0.1
4+ cli :
5+ version : 1.24.0
6+ # Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins)
7+ plugins :
8+ sources :
9+ - id : trunk
10+ ref : v1.7.1
11+ uri : https://github.com/trunk-io/plugins
12+ # Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
13+ runtimes :
14+ enabled :
15+ - go@1.21.0
16+ - node@22.16.0
17+ - python@3.10.8
18+ # This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
19+ lint :
20+ enabled :
21+ - actionlint@1.7.7
22+ - checkov@3.2.447
23+ - git-diff-check
24+ - hadolint@2.12.1-beta
25+ - markdownlint@0.45.0
26+ - oxipng@9.1.5
27+ - prettier@3.6.2
28+ - shellcheck@0.10.0
29+ - shfmt@3.6.0
30+ - svgo@4.0.0
31+ - trufflehog@3.89.2
32+ - yamllint@1.37.1
33+ actions :
34+ disabled :
35+ - trunk-announce
36+ - trunk-check-pre-push
37+ - trunk-fmt-pre-commit
38+ enabled :
39+ - trunk-upgrade-available
You can’t perform that action at this time.
0 commit comments