12 lines
243 B
TOML
12 lines
243 B
TOML
[tool.ruff]
|
|
line-length = 90
|
|
target-version = "py312"
|
|
exclude = [".venv", "*/migrations/*"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP", "B", "DJ"]
|
|
ignore = ["E501"]
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["apibase", "core", "users"]
|