From b217fbea5ef745c28e3a5bf129c30bd1d415a9e9 Mon Sep 17 00:00:00 2001 From: Tris Forster Date: Sun, 24 May 2026 14:23:59 +1000 Subject: [PATCH] Sorted out linting --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index f35e799..5d1ca71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]