|
1 | 1 | [flake8] |
2 | | -ignore = |
3 | | - E203, // Handled by black (Whitespace before ':' -- handled by black) |
4 | | - E266, // Handled by black (Too many leading '#' for block comment) |
5 | | - E501, // Handled by black (Line too long) |
6 | | - W503, // Handled by black (Line break occured before a binary operator) |
7 | | - E402, // Sometimes not possible due to execution order (Module level import is not at top of file) |
8 | | - E731, // I don't care (Do not assign a lambda expression, use a def) |
9 | | - B950, // Handled by black (Line too long by flake8-bugbear) |
10 | | - B011, // I don't care (Do not call assert False) |
11 | | - B014, // does not apply to Python 2 (redundant exception types by flake8-bugbear) |
12 | | - N812, // I don't care (Lowercase imported as non-lowercase by pep8-naming) |
13 | | - N804 // is a worse version of and conflicts with B902 (first argument of a classmethod should be named cls) |
14 | | -max-line-length = 80 |
15 | | -select = N,B,C,E,F,W,T4,B9 |
16 | | -exclude=checkouts,lol*,.tox |
| 2 | +extend-ignore = |
| 3 | + # Handled by black (Whitespace before ':' -- handled by black) |
| 4 | + E203, |
| 5 | + # Handled by black (Line too long) |
| 6 | + E501, |
| 7 | + # Sometimes not possible due to execution order (Module level import is not at top of file) |
| 8 | + E402, |
| 9 | + # I don't care (Do not assign a lambda expression, use a def) |
| 10 | + E731, |
| 11 | + # does not apply to Python 2 (redundant exception types by flake8-bugbear) |
| 12 | + B014, |
| 13 | + # I don't care (Lowercase imported as non-lowercase by pep8-naming) |
| 14 | + N812, |
| 15 | + # is a worse version of and conflicts with B902 (first argument of a classmethod should be named cls) |
| 16 | + N804, |
| 17 | +extend-exclude=checkouts,lol* |
0 commit comments