Skip to content

Commit

Permalink
Merge pull request #6 from cisagov/improvement/disable_w503
Browse files Browse the repository at this point in the history
Ignore W503 from flake8
  • Loading branch information
jsf9k authored Apr 15, 2019
2 parents ce3a97a + c9f8b72 commit 916d7d5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@ select = C,E,F,W,B,B950
# Ignore flake8's default warning about maximum line length, which has
# a hard stop at the configured value. Instead we use
# flake8-bugbear's B950, which allows up to 10% overage.
ignore = E501
#
# Also ignore flake8's warning about line breaks before binary
# operators. It no longer agrees with PEP8. See, for example, here:
# https://github.com/ambv/black/issues/21. Guido agrees here:
# https://github.com/python/peps/commit/c59c4376ad233a62ca4b3a6060c81368bd21e85b.
ignore = E501,W503

0 comments on commit 916d7d5

Please sign in to comment.