|
1 | 1 | [flake8] |
2 | | -ignore = E203,E231,E501,I100,I201,I202,D102,D100,C901,D104,D101,D105,D107,D400,D103,D205,W503,E402,E266,F841 |
3 | | -# E203 whitespace before ':'. Conflicts with how Black formats slicing. |
4 | | -# E231 missing whitespace after ',', ';', or ':'. Conflicts with Black. |
5 | | -# E501 line too long (82 > 79 characters). Ignored because max-line-length is set. |
6 | | -# I100 Import statements are in the wrong order. |
7 | | -# I201 Missing newline between import groups. |
8 | | -# I202 Additional newline in a group of imports. |
9 | | -# D102 Missing docstring in public method. |
10 | | -# D100 Missing docstring in public module. |
11 | | -# C901 function is too complex. Ignored because max-complexity is set. |
12 | | -# D104 Missing docstring in public package. |
13 | | -# D101 Missing docstring in public class. |
14 | | -# D105 Missing docstring in magic method. |
15 | | -# D107 Missing docstring in __init__. |
16 | | -# D400 First line should end with a period. |
17 | | -# D103 Missing docstring in public function. |
18 | | -# D205 1 blank line required between summary line and description. |
19 | | -# W503 line break before binary operator. This is no longer PEP 8 compliant. |
20 | | -# E402 module level import not at top of file. |
21 | | -# E266 too many leading '#' for block comment. |
22 | | -# F841 local variable is assigned to but never used. |
| 2 | +ignore = |
| 3 | +# C901, # function is too complex. Ignored because max-complexity is set. |
| 4 | + D100, # Missing docstring in public module. |
| 5 | + D101, # Missing docstring in public class. |
| 6 | + D102, # Missing docstring in public method. |
| 7 | + D103, # Missing docstring in public function. |
| 8 | + D104, # Missing docstring in public package. |
| 9 | + D105, # Missing docstring in magic method. |
| 10 | + D107, # Missing docstring in __init__. |
| 11 | + D205, # 1 blank line required between summary line and description. |
| 12 | + D400, # First line should end with a period. |
| 13 | + E203, # whitespace before ':'. Conflicts with how Black formats slicing. |
| 14 | + E231, # missing whitespace after ',', ';', or ':'. Conflicts with Black. |
| 15 | + E266, # too many leading '#' for block comment. |
| 16 | + E402, # module level import not at top of file. |
| 17 | + E501, # line too long (82 > 79 characters). Ignored because max-line-length is set. |
| 18 | + F841, # local variable is assigned to but never used. |
| 19 | + I100, # Import statements are in the wrong order. |
| 20 | + I201, # Missing newline between import groups. |
| 21 | + I202, # Additional newline in a group of imports. |
| 22 | + W503 # line break before binary operator. This is no longer PEP 8 compliant. |
23 | 23 |
|
24 | 24 | exclude = |
25 | 25 | .cache, |
|
0 commit comments