File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ local linters = new Mapping<String, Step> {
1414 // fix = "cargo clippy --manifest-path {{workspace_indicator}} --all-features --fix --allow-dirty --allow-staged -- -Dwarnings"
1515 //}
1616 ["cargo-fmt" ] {
17- glob = List("*.rs" )
17+ glob = List("**/* .rs" )
1818 check = "cargo fmt --all -- --check"
1919 fix = "cargo fmt --all"
2020 }
4242
4343 // uses custom pkl linter config
4444 ["pkl" ] {
45- glob = "*.pkl"
45+ glob = "**/* .pkl"
4646 check = "pkl eval {{files}} >/dev/null"
4747 }
4848
4949 // uses taplo for TOML formatting and validation
5050 ["taplo" ] {
51- glob = List("*.toml" )
51+ glob = List("**/* .toml" )
5252 exclude = List("docs/registry/" ) // exclude docs/registry/ symlink
5353 check = "taplo fmt --check {{files}} && taplo check {{files}}"
5454 fix = "taplo fmt {{files}} && taplo check {{files}}"
7575 fix = "markdownlint --fix {{ files }}"
7676 }
7777 ["schema" ] {
78- glob = List("schema/*.json" )
78+ glob = List("schema/**/* .json" )
7979 check = "ajv compile -s schema/mise.json --spec=draft2019 --strict-schema=true && ajv compile -s schema/mise-task.json --spec=draft2019 --strict-schema=true && ajv compile -s schema/mise.plugin.json --spec=draft2020 --strict-schema=true"
8080 }
8181}
You can’t perform that action at this time.
0 commit comments