Skip to content

Commit

Permalink
Update flake8 ignores for black
Browse files Browse the repository at this point in the history
See also:
- psf/black#429
- psf/black#53 (W503)
  • Loading branch information
tony committed Aug 25, 2018
1 parent d97a922 commit 59c6bf5
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 @@ -2,6 +2,43 @@
exclude = .*/,.tox,*.egg,libvcs/_compat.py,libvcs/__*__.py,
select = E,W,F,N
max-line-length = 88
# 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 59c6bf5

Please sign in to comment.