[pylint] 'cell-var-from-loop' and 'disallowed-name' permanent disable
This commit is contained in:
parent
9c0ec41983
commit
9cf0dd2fac
|
@ -181,7 +181,7 @@ disable = [
|
|||
"bad-mcs-method-argument",
|
||||
"broad-exception-caught",
|
||||
"broad-exception-raised",
|
||||
"cell-var-from-loop",
|
||||
"cell-var-from-loop", # B023 from ruff / flake8-bugbear
|
||||
"comparison-of-constants",
|
||||
"comparison-with-callable",
|
||||
"comparison-with-itself",
|
||||
|
@ -194,7 +194,7 @@ disable = [
|
|||
"consider-using-ternary",
|
||||
"consider-using-with",
|
||||
"cyclic-import",
|
||||
"disallowed-name",
|
||||
"disallowed-name", # foo / bar are used often in tests
|
||||
"duplicate-code",
|
||||
"eval-used",
|
||||
"exec-used",
|
||||
|
|
Loading…
Reference in New Issue