Skip to content

Commit 0ff0e13

Browse files
authored
Explicit ruff ignoring of existing issues. (#14634)
2 parents cb55d94 + 10a6287 commit 0ff0e13

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,24 @@ ignore = [
380380
# "SIM105", # SIM105 Use `contextlib.suppress(...)`
381381
# "PLR", # Design related pylint codes
382382
# "S101", # Use of `assert` detected
383+
"E712", # 1
384+
"E713", # 1
385+
"E902", # 2
386+
"E702", # 3
387+
"E721", # 3
388+
"E401", # 5
389+
"E711", # 14 Comparison to `None` should be `cond is None`
390+
"E701", # 19 Multiple statements on one line (colon)
391+
"E741", # 25 Ambiguous variable name: `<one letter>`
392+
"E731", # 27 Do not assign a `lambda` expression, use a `def`
393+
"E402", # 28 Module level import not at top of file
394+
"E722", # 75 Do not use bare `except`
395+
"F523", # 1
396+
"F811", # 3
397+
"F403", # 7
398+
"F841", # 38 Local variable `...` is assigned to but never used
399+
"F401", # 69 imported but unused
400+
"F821", # 624 F821 Undefined name
383401
]
384402
unfixable = [
385403
# Don't touch print statements

0 commit comments

Comments
 (0)