Skip to content

Commit c6bae48

Browse files
authored
Disable flake8-bugbear errors (if installed) (#2629)
1 parent c1c8a13 commit c6bae48

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ exclude = mypy/codec/*
1010
# W503: line break before binary operator
1111
# E704: multiple statements on one line (def)
1212
# E402: module level import not at top of file
13-
ignore = E251,E128,F401,W601,E701,W503,E704,E402
13+
# B???: flake8-bugbear errors
14+
ignore = E251,E128,F401,W601,E701,W503,E704,E402,B
1415

1516
[coverage:run]
1617
branch = true

0 commit comments

Comments
 (0)