Skip to content

Commit b0c230c

Browse files
authored
chore: adding ruff T20 (#972)
1 parent 306d0b8 commit b0c230c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ extend-select = [
122122
"SIM", # flake8-simplify
123123
"SLOT", # flake8-slots
124124
"T10", # flake8-debugger
125+
"T20", # flake8-print
125126
"TRY", # tryceratops
126127
"UP", # pyupgrade
127128
"W",
@@ -140,6 +141,8 @@ flake8-comprehensions.allow-dict-calls-with-keyword-arguments = true
140141
flake8-unused-arguments.ignore-variadic-names = true
141142

142143
[tool.ruff.lint.per-file-ignores]
143-
"tests/test_*.py" = ["PYI024", "PLR", "SIM201"]
144-
"tasks/check.py" = ["UP032"]
144+
"tests/test_*.py" = ["PYI024", "PLR", "SIM201", "T20"]
145+
"tasks/check.py" = ["UP032", "T20"]
145146
"tests/test_requirements.py" = ["UP032"]
147+
"src/packaging/_musllinux.py" = ["T20"]
148+
"noxfile.py" = ["T20"]

0 commit comments

Comments
 (0)