We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13fffe3 commit 4d77b8dCopy full SHA for 4d77b8d
1 file changed
pyproject.toml
@@ -90,6 +90,7 @@ select = [
90
"S", # flake8-bandit
91
"SIM", # flake8-simplify
92
"T10", # flake8-debugger
93
+ "T20", # flake8-print
94
"TCH", # flake8-type-checking
95
"TID", # flake8-tidy-imports
96
"UP", # pyupgrade
@@ -101,7 +102,6 @@ select = [
101
102
# "FBT", # flake8-boolean-trap
103
# "Q", # flake8-quotes
104
# "SLF", # flake8-self
- # "T20", # flake8-print
105
# "TRY", # tryceratops
106
]
107
# Note: use `ruff rule ...` to see explanations of rules
@@ -123,6 +123,7 @@ max-statements = 95
123
[tool.ruff.per-file-ignores]
124
"docs/*" = [
125
"INP001", # allow stand-alone scripts
126
+ "T201", # allow print statements
127
128
"tests/*" = [
129
"D", # no docstrings necessary here
0 commit comments