15 lines
330 B
TOML
Executable File
15 lines
330 B
TOML
Executable File
[tool.ruff]
|
|
line-length = 79
|
|
indent-width = 4
|
|
exclude = ["migrations", "venv", ".venv"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["ALL"]
|
|
ignore = ["D", "ANN", "EXE002", "RUF012", "RUF001", "COM812", "ISC001"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
indent-style = "space"
|
|
skip-magic-trailing-comma = false
|
|
line-ending = "auto"
|