Skip to content

Commit

Permalink
[pylint] 'cell-var-from-loop' and 'disallowed-name' permanent disable
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Apr 1, 2024
1 parent de57b01 commit bb4bd7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Expand Up @@ -178,7 +178,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",
Expand All @@ -191,7 +191,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",
Expand Down

0 comments on commit bb4bd7e

Please sign in to comment.