Sorted out linting

This commit is contained in:
Tris Forster 2026-05-24 14:23:59 +10:00
parent d30005d5b6
commit b217fbea5e

View File

@ -26,12 +26,22 @@ dependencies = [
django-debug-toolbar = "5.2"
ruff = "^0.15.12"
coverage = "^7.14.0"
django-types = "^0.24.0"
[tool.poetry.scripts]
poly-tool = "polyphonic.manage:main"
[tool.ruff]
extend-exclude = ["**/migrations/"]
extend-select = [
"DJ", # flake8-django: Django-specific bugs
"E", # pycodestyle errors
"F", # Pyflakes
"W", # pycodestyle warnings
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]