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 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 16, 2021
1 parent c75f778 commit 6707285
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 6707285

Please sign in to comment.