Skip to content

Commit

Permalink
Disable flake8-bugbear errors (if installed) (python#2629)
Browse files Browse the repository at this point in the history
  • Loading branch information
gvanrossum authored Jan 3, 2017
1 parent c1c8a13 commit c6bae48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ exclude = mypy/codec/*
# W503: line break before binary operator
# E704: multiple statements on one line (def)
# E402: module level import not at top of file
ignore = E251,E128,F401,W601,E701,W503,E704,E402
# B???: flake8-bugbear errors
ignore = E251,E128,F401,W601,E701,W503,E704,E402,B

[coverage:run]
branch = true
Expand Down

0 comments on commit c6bae48

Please sign in to comment.