Skip to content

Commit

Permalink
Merge pull request #7382 from nabobalis/setup
Browse files Browse the repository at this point in the history
Bug with flake8 and comments
  • Loading branch information
dstansby committed Jan 15, 2024
2 parents 71e1c39 + 5e275ee commit d089677
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -243,14 +243,22 @@ filterwarnings =

[flake8]
ignore =
E225, # missing-whitespace-around-operator
E226, # missing-whitespace-around-arithmetic-operator
E501, # line-too-long
F401, # unused-import
F403, # undefined-local-with-import-star
F811, # redefined-while-unused
W503, # Line break occurred before a binary operator
W504, # Line break occurred after a binary operator
# missing-whitespace-around-operator
E225,
# missing-whitespace-around-arithmetic-operator
E226,
# line-too-long
E501,
# unused-import
F401,
# undefined-local-with-import-star
F403,
# redefined-while-unused
F811,
# Line break occurred before a binary operator
W503,
# Line break occurred after a binary operator
W504,
max-line-length = 110
exclude =
.git,
Expand Down

0 comments on commit d089677

Please sign in to comment.