|
| 1 | +[flake8] |
| 2 | +ignore = |
| 3 | + E201, # whitespace after '{' |
| 4 | + E202, # whitespace before '}' |
| 5 | + E501, # line too long |
| 6 | + E128, # continuation line under-indented for visual indent |
| 7 | + E226, # missing whitespace around arithmetic operator |
| 8 | + E126, # continuation line over-indented for hanging indent |
| 9 | + E203, # whitespace before ':' |
| 10 | + E111, # indentation is not a multiple of four |
| 11 | + E261, # at least two spaces before inline comment |
| 12 | + E124, # closing bracket does not match visual indentation |
| 13 | + E731, # do not assign a lambda expression, use a def |
| 14 | + E401, # multiple imports on one line |
| 15 | + E302, # expected 2 blank lines, found 1 |
| 16 | + W503, # line break before binary operator |
| 17 | + E231, # missing whitespace after ':' |
| 18 | + E303, # too many blank lines (2) |
| 19 | + E302, # expected 2 blank lines, found 1 |
| 20 | + E305, # expected 2 blank lines after class or function definition, found 1 |
| 21 | + F401, # 'X' imported but unused |
| 22 | + F821, # undefined name 'X' |
| 23 | + E228, # missing whitespace around modulo operator |
| 24 | + E999, # SyntaxError: invalid syntax |
| 25 | + E225, # missing whitespace around operator |
| 26 | + F403, # 'from .base import *' used; unable to detect undefined names |
| 27 | + W391, # blank line at end of file |
| 28 | + E122, # continuation line missing indentation or outdented |
| 29 | + E251, # unexpected spaces around keyword / parameter equals |
| 30 | + E713, # test for membership should be 'not in' |
| 31 | + E722, # do not use bare except' |
| 32 | + E129, # visually indented line with same indent as next logical line |
| 33 | + E301, # expected 1 blank line, found 0 |
| 34 | + E121, # continuation line under-indented for hanging indent |
| 35 | + E123, # closing bracket does not match indentation of opening bracket's line |
| 36 | + E127, # continuation line over-indented for visual indent |
| 37 | + E222, # multiple spaces after operator |
| 38 | + E265, # block comment should start with '# ' |
| 39 | + F811, # redefinition of unused X |
| 40 | + E222, # multiple spaces after operator |
| 41 | + E117, # over-indented |
| 42 | + W504, # line break after binary operator |
| 43 | + F405, # 'X' may be undefined, or defined from star imports: X |
| 44 | + F841, # local variable 'tlc' is assigned to but never used |
| 45 | + W605, # invalid escape sequence '\|' |
| 46 | + F402, # import 'X' from line X shadowed by loop variable |
0 commit comments