added ruff.toml

This commit is contained in:
John Lancaster
2025-06-20 08:21:01 -05:00
parent 7025bcde99
commit edee038a9f

14
ruff.toml Normal file
View File

@@ -0,0 +1,14 @@
line-length = 88
target-version = "py312"
[lint]
exclude = [
"conf/apps/simple_app/malformed.py"
]
select = ["ALL"]
extend-ignore = ["ANN", "D", "E501", "COM812", "ERA001", "S101", "INP001"]
[format]
quote-style = "single"
indent-style = "space"