setup.cfg
changeset 2029 a6410877339a
parent 2020 143c8e4dc22d
child 2030 3e8fcf47fb1e
equal deleted inserted replaced
2028:d7f31181ef90 2029:a6410877339a
     1 [flake8]
     1 [flake8]
     2 ignore = E261, E266, E302, E305, E129, E731, E124, E501, E123, W503, N801
     2 ignore =
       
     3          #closing bracket does not match indentation of opening bracket's line
       
     4          E123,
       
     5          # closing bracket does not match visual indentation
       
     6          E124,
       
     7          # visually indented line with same indent as next logical line
       
     8          E129,
       
     9          # at least two spaces before inline comment
       
    10          E261,
       
    11          # too many leading '#' for block comment
       
    12          E266,
       
    13          # expected 2 blank lines, found 0
       
    14          E302,
       
    15          # expected 2 blank lines after end of function or class
       
    16          E305,
       
    17          # line too long (82 > 79 characters)
       
    18          E501,
       
    19          # do not assign a lambda expression, use a def
       
    20          E731,
       
    21          # class names should use CapWords convention
       
    22          N801,
       
    23          # line break occurred before a binary operator
       
    24          W503
     3 
    25