@@ -49,7 +49,6 @@ ignore = [
49
49
' RUF015' , # not always more readable, and we don't do it for huge lists
50
50
' RUF022' , # autofix messes up our formatting instead of just sorting
51
51
' RUF027' , # also triggers on i18n functions -> too noisy for now
52
- ' RUF035' , # somewhat noisy and many FPs: see https://github.com/astral-sh/ruff/issues/14523
53
52
' RUF052' , # we often use underscore-prefixed variables in tests and to cache regexps in function definitions
54
53
' UP038' , # it looks kind of weird and it slower than a tuple
55
54
' D205' , # too many docstrings which have no summary line
@@ -66,6 +65,7 @@ ignore = [
66
65
' S405' , # we don't use lxml in unsafe ways
67
66
' S603' , # useless, triggers on *all* subprocess calls: https://github.com/astral-sh/ruff/issues/4045
68
67
' S607' , # we trust the PATH to be sane
68
+ ' S704' , # somewhat noisy and many FPs: see https://github.com/astral-sh/ruff/issues/14523
69
69
' B011' , # we don't run python with `-O` (also see S101)
70
70
' B904' , # possibly useful but too noisy
71
71
' COM812' , # trailing commas on multiline lists are nice, but we have 2.5k violations
0 commit comments