File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff 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]
384402unfixable = [
385403 # Don't touch print statements
You can’t perform that action at this time.
0 commit comments