You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -198,8 +198,8 @@ select = [
198
198
"YTT", # flake8-2020
199
199
]
200
200
ignore = [
201
-
"A005", # allow to shadow stdlib and builtin module names
202
201
"B904", # Within an `except` clause, raise exceptions with `raise ... from err` or `raise ... from None` to distinguish them from errors in exception handling
202
+
"C901", # complexity handled by wemake rules
203
203
"COM812", # trailing comma, conflicts with `ruff format`
204
204
# Different doc rules that we don't really care about:
205
205
"D100",
@@ -214,10 +214,13 @@ ignore = [
214
214
"D405",
215
215
"ISC001", # implicit string concat conflicts with `ruff format`
216
216
"ISC003", # prefer explicit string concat over implicit concat
217
+
"FURB118", # keep explicit fixtures instead of itemgetter shortcuts
217
218
"PLR09", # we have our own complexity rules
218
219
"PLR2004", # do not report magic numbers
219
220
"PLR6301", # do not require classmethod / staticmethod when self not used
221
+
"PT001", # allow `@pytest.fixture` without parentheses
220
222
"PT011", # pytest.raises({exception}) is too broad, set the match parameter or use a more specific exception
223
+
"PT023", # allow bare `@pytest.mark.flaky`
221
224
"TRY003", # long exception messages from `tryceratops`
0 commit comments