We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 306d0b8 commit b0c230cCopy full SHA for b0c230c
pyproject.toml
@@ -122,6 +122,7 @@ extend-select = [
122
"SIM", # flake8-simplify
123
"SLOT", # flake8-slots
124
"T10", # flake8-debugger
125
+ "T20", # flake8-print
126
"TRY", # tryceratops
127
"UP", # pyupgrade
128
"W",
@@ -140,6 +141,8 @@ flake8-comprehensions.allow-dict-calls-with-keyword-arguments = true
140
141
flake8-unused-arguments.ignore-variadic-names = true
142
143
[tool.ruff.lint.per-file-ignores]
-"tests/test_*.py" = ["PYI024", "PLR", "SIM201"]
144
-"tasks/check.py" = ["UP032"]
+"tests/test_*.py" = ["PYI024", "PLR", "SIM201", "T20"]
145
+"tasks/check.py" = ["UP032", "T20"]
146
"tests/test_requirements.py" = ["UP032"]
147
+"src/packaging/_musllinux.py" = ["T20"]
148
+"noxfile.py" = ["T20"]
0 commit comments