Skip to content

Commit

Permalink
Update flake8 ignores for black
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Aug 25, 2018
1 parent d197bf5 commit 2328973
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,43 @@ max-line-length = 88
max-complexity = 10
exclude = .git,
__pycache__,
# Stuff we ignore thanks to black: https://github.com/ambv/black/issues/429
ignore = E111,
E121,
E122,
E123,
E124,
E125,
E126,
E201,
E202,
E203,
E221,
E222,
E225,
E226,
E227,
E231,
E241,
E251,
E261,
E262,
E265,
E271,
E272,
E302,
E303,
E306,
E502,
E701,
E702,
E703,
E704,
W291,
W292,
W293,
W391,
W503

[isort]
combine_as_imports= true
Expand Down

0 comments on commit 2328973

Please sign in to comment.