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 Dec 3, 2021
1 parent e3f5aa9 commit 3ccf74a
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 3ccf74a

Please sign in to comment.