We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d084174 commit f135f1dCopy full SHA for f135f1d
pyproject.toml
@@ -168,6 +168,20 @@ ignore = [
168
"TRY003", # raise-vanilla-args
169
170
# Project-specific
171
+ "A002", # builtin-argument-shadowing
172
+ "ARG003", # unused-class-method-argument
173
+ "BLE001", # blind-except
174
+ "C901", # complex-structure
175
+ "DJ001", # django-nullable-model-string-field
176
+ "FBT002", # boolean-default-value-positional-argument
177
+ "PLC0415", # import-outside-top-level
178
+ "PLR0912", # too-many-branches
179
+ "PLR0913", # too-many-arguments
180
+ "PLR0915", # too-many-statements
181
+ "PLW2901", # redefined-loop-name
182
+ "SLF001", # private-member-access
183
+ "T201", # print
184
+ "TRY301", # raise-within-try
185
]
186
187
[tool.ruff.lint.per-file-ignores]
0 commit comments