handouts/tools/scripts/ruff.toml
Mark 66670d6751
Some checks failed
CI / Typst formatting (push) Successful in 12s
CI / Typos (push) Successful in 15s
CI / Build (push) Has been cancelled
Fix publish?
2025-01-22 08:34:57 -08:00

18 lines
331 B
TOML

exclude = ["venv"]
line-length = 88
indent-width = 4
target-version = "py39"
[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"