diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index d696411..7e94f99 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -93,7 +93,6 @@ exclude = [ "__pycache__", "*/migrations/*", ] -ignore= ["DJ001", "PLR2004"] line-length = 88 @@ -114,12 +113,13 @@ select = [ "SLF", # flake8-self "T20", # flake8-print ] +ignore= ["DJ001", "PLR2004"] [tool.ruff.lint.isort] section-order = ["future","standard-library","django","third-party","people","first-party","local-folder"] sections = { people=["core"], django=["django"] } -[tool.ruff.per-file-ignores] +[tool.ruff.lint.per-file-ignores] "**/tests/*" = ["S", "SLF"] [tool.pytest.ini_options]