Allow and unify the usage of TODOs

This commit is contained in:
Alexander Hess 2024-09-27 15:29:33 +02:00
commit 4c0c7887e5
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
3 changed files with 23 additions and 1 deletions

View file

@ -57,6 +57,7 @@ flake8-eradicate = "^1.5"
flake8-isort = "^6.1"
flake8-quotes = "^3.4"
flake8-string-format = "^0.3"
flake8-todos = "^0.3"
flake8-pyproject = "^1.2"
flake8-pytest-style = "^2.0"
mypy = "^1.11"
@ -171,6 +172,7 @@ select = [
"PT", # flake8-pytest-style => enforce a consistent style with pytest
"Q", # flake8-quotes => use double quotes everywhere (complying with black)
"S", # flake8-bandit => common security issues
"T00", # flake8-todos => unify TODOs
"T10", # flake8-debugger => no debugger usage
# violations not covered by `ruff` below
@ -355,6 +357,7 @@ select = [
"PT", # flake8-pytest-style => enforce a consistent style with pytest
"Q", # flake8-quotes => use double quotes everywhere
"S", # flake8-bandit => common security issues
"TD", # flake8-todos => unify TODOs
"T10", # flake8-debugger => no debugger usage
# violations not covered by `flake8` above