1
0
tetros/tools/scripts/ruff.toml
Mark 073c42b2eb
Some checks failed
CI / Typos (push) Successful in 12s
CI / Clippy (push) Failing after 31s
CI / Build (push) Failing after 1m8s
ci?
2025-02-25 19:37:02 -08:00

19 lines
361 B
TOML

exclude = ["venv"]
line-length = 88
indent-width = 4
target-version = "py39"
include = ["scripts/**/*.py"]
[lint]
select = ["E4", "E7", "E9", "F"]
ignore = []
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[format]
quote-style = "double"
indent-style = "tab"
skip-magic-trailing-comma = false
line-ending = "lf"