|
6 | 6 | # Note: there cannot be spaces after comma's here
|
7 | 7 | exclude = __init__.py,
|
8 | 8 | ignore =
|
9 |
| - E20, # Extra space in brackets |
10 |
| - E231,E241, # Multiple spaces around "," |
11 |
| - E26, # Comments |
12 |
| - E4, # Import formatting |
13 |
| - E721, # Comparing types instead of isinstance |
14 |
| - E731, # Assigning lambda expression |
15 |
| - E121, # continuation line under-indented for hanging indent |
16 |
| - E126, # continuation line over-indented for hanging indent |
17 |
| - E127, # continuation line over-indented for visual indent |
18 |
| - E128, # E128 continuation line under-indented for visual indent |
19 |
| - E702, # multiple statements on one line (semicolon) |
20 |
| - W503, # line break before binary operator |
21 |
| - E129, # visually indented line with same indent as next logical line |
22 |
| - E116, # unexpected indentation |
23 |
| - F811, # redefinition of unused 'loop' from line 10 |
24 |
| - F841, # local variable is assigned to but never used |
25 |
| - E741 # Ambiguous variable names |
26 |
| - W504, # line break after binary operator |
| 9 | + E20, |
| 10 | + E231, |
| 11 | + E241, |
| 12 | + E26, |
| 13 | + E4, |
| 14 | + E721, |
| 15 | + E731, |
| 16 | + E121, |
| 17 | + E126, |
| 18 | + E127, |
| 19 | + E128, |
| 20 | + E702, |
| 21 | + W503, |
| 22 | + E129, |
| 23 | + E116, |
| 24 | + F811, |
| 25 | + F841, |
| 26 | + E741, |
| 27 | + W504 |
27 | 28 |
|
28 | 29 | max-line-length = 120
|
29 | 30 |
|
|
0 commit comments