##// END OF EJS Templates
Explicit ruff ignoring of existing issues.
M Bussonnier -
Show More
@@ -380,6 +380,24 ignore = [
380 # "SIM105", # SIM105 Use `contextlib.suppress(...)`
380 # "SIM105", # SIM105 Use `contextlib.suppress(...)`
381 # "PLR", # Design related pylint codes
381 # "PLR", # Design related pylint codes
382 # "S101", # Use of `assert` detected
382 # "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
383 ]
401 ]
384 unfixable = [
402 unfixable = [
385 # Don't touch print statements
403 # Don't touch print statements
General Comments 0
You need to be logged in to leave comments. Login now