[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",
|
"bad-mcs-method-argument",
|
||||||
"broad-exception-caught",
|
"broad-exception-caught",
|
||||||
"broad-exception-raised",
|
"broad-exception-raised",
|
||||||
"cell-var-from-loop",
|
"cell-var-from-loop", # B023 from ruff / flake8-bugbear
|
||||||
"comparison-of-constants",
|
"comparison-of-constants",
|
||||||
"comparison-with-callable",
|
"comparison-with-callable",
|
||||||
"comparison-with-itself",
|
"comparison-with-itself",
|
||||||
|
@ -194,7 +194,7 @@ disable = [
|
||||||
"consider-using-ternary",
|
"consider-using-ternary",
|
||||||
"consider-using-with",
|
"consider-using-with",
|
||||||
"cyclic-import",
|
"cyclic-import",
|
||||||
"disallowed-name",
|
"disallowed-name", # foo / bar are used often in tests
|
||||||
"duplicate-code",
|
"duplicate-code",
|
||||||
"eval-used",
|
"eval-used",
|
||||||
"exec-used",
|
"exec-used",
|
||||||
|
|
Loading…
Reference in New Issue