Steve Piercy
2018-09-22 e22970cd21eb36c2a658c843bb5cb4f59d77fd19
setup.cfg
@@ -13,6 +13,9 @@
[bdist_wheel]
universal = 1
[metadata]
license_file = LICENSE.txt
[flake8]
ignore =
    # E121: continuation line under-indented for hanging indent
@@ -27,19 +30,19 @@
    E128,
    # E129: visually indented line with same indent as next logical line
    E129,
    # E201: whitespace after ‘(‘
    # E201: whitespace after '('
    E201,
    # E202: whitespace before ‘)’
    # E202: whitespace before ')'
    E202,
    # E231: missing whitespace after ‘,’, ‘;’, or ‘:’
    # E231: missing whitespace after ',', ';', or ':'
    E231,
    # E261: at least two spaces before inline comment
    E261,
    # E262: inline comment should start with ‘# ‘
    # E262: inline comment should start with '# '
    E262,
    # E265: block comment should start with ‘# ‘
    # E265: block comment should start with '# '
    E265,
    # E266: too many leading ‘#’ for block comment
    # E266: too many leading '#' for block comment
    E266,
    # E301: expected 1 blank line, found 0
    E301,
@@ -47,6 +50,10 @@
    E302,
    # E303: too many blank lines (3)
    E303,
    # E305: expected 2 blank lines after class or function definition, found 1
    E305,
    # E306: expected 1 blank line before a nested definition, found 0
    E306,
    # E501: line too long (82 > 79 characters)
    E501,
    # E731: do not assign a lambda expression, use a def