Skip to content

Commit 66dfc76

Browse files
committed
tmp
1 parent df097fc commit 66dfc76

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ select = [
198198
"YTT", # flake8-2020
199199
]
200200
ignore = [
201-
"A005", # allow to shadow stdlib and builtin module names
202201
"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
203203
"COM812", # trailing comma, conflicts with `ruff format`
204204
# Different doc rules that we don't really care about:
205205
"D100",
@@ -214,10 +214,13 @@ ignore = [
214214
"D405",
215215
"ISC001", # implicit string concat conflicts with `ruff format`
216216
"ISC003", # prefer explicit string concat over implicit concat
217+
"FURB118", # keep explicit fixtures instead of itemgetter shortcuts
217218
"PLR09", # we have our own complexity rules
218219
"PLR2004", # do not report magic numbers
219220
"PLR6301", # do not require classmethod / staticmethod when self not used
221+
"PT001", # allow `@pytest.fixture` without parentheses
220222
"PT011", # pytest.raises({exception}) is too broad, set the match parameter or use a more specific exception
223+
"PT023", # allow bare `@pytest.mark.flaky`
221224
"TRY003", # long exception messages from `tryceratops`
222225
]
223226
external = [ "AAA", "WPS" ]

0 commit comments

Comments
 (0)