Skip to content

Commit

Permalink
Ignore flake8 rule W503
Browse files Browse the repository at this point in the history
By default, flake8 currently complains both when breaking before (W503)
and after (W504) a binary operator. A choice needs to be made!

Best practice evolved, around 2016, from breaking after to breaking before
a binary operator. Therefore ignore W503.
  • Loading branch information
DimitriPapadopoulos committed Sep 27, 2022
1 parent c272a41 commit bcd8a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ addopts = --cov=codespell_lib --showlocals -rs --cov-report=

[flake8]
exclude = build, ci-helpers
ignore =
ignore = W503

0 comments on commit bcd8a7b

Please sign in to comment.