django-project-structure/pyproject.toml

17 lines
396 B
TOML
Raw Normal View History

[tool.black]
line-length = 79
2024-11-05 08:47:50 +00:00
target-version = ['py312']
include = '\.pyi?$'
extend-exclude = 'migrations/*'
2024-11-05 08:47:50 +00:00
[tool.ruff.lint.isort]
case-sensitive = true
force-single-line = true
section-order = ["future", "standard-library", "first-party", "django", "rest_framework", "third-party", "local-folder"]
[tool.ruff.lint.isort.sections]
"django" = ["django"]
"rest_framework" = ["rest_framework"]