17 lines
243 B
TOML
17 lines
243 B
TOML
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|
|
exclude = [
|
|
"migrations",
|
|
".venv",
|
|
"venv",
|
|
"__pycache__",
|
|
]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I"]
|
|
ignore = []
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
indent-style = "space" |