[pylint] 'cell-var-from-loop' and 'disallowed-name' permanent disable

This commit is contained in:
Pierre Sassoulas 2024-03-31 23:59:36 +02:00
parent 9c0ec41983
commit 9cf0dd2fac
1 changed files with 2 additions and 2 deletions

View File

@ -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",