We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22ea08d commit 6d45beeCopy full SHA for 6d45bee
Justfile
@@ -24,6 +24,8 @@ perfect:
24
restyle:
25
git ls-files '*.lua' '*.lua.in' '*.rockspec.in' .busted .luacov .luacheckrc build-aux/config.ld | xargs stylua --respect-ignores
26
git ls-files '*.rs' '*.rs.in' | xargs rustfmt --edition 2021 --config skip_children=true
27
+ git ls-files '*.py' '*.py.in' | xargs ruff check --fix
28
+ git ls-files '*.py' '*.py.in' | xargs ruff format
29
git ls-files '*.toml' | xargs taplo format
30
31
[private]
pyproject.toml
@@ -2,5 +2,5 @@
2
name = "casile"
3
dynamic = ["version"]
4
5
-[tool.ruff]
+[tool.ruff.lint]
6
extend-select = ["I"]
0 commit comments