From a300b6218414c578239685f908c9a8df5711f11a Mon Sep 17 00:00:00 2001 From: Jesse Mullan Date: Sat, 1 Nov 2014 17:02:22 -0700 Subject: [PATCH] Loosen pep8 restrictions to not cover anything not fixed --- .pep8 | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.pep8 b/.pep8 index 214a0160..9dc3362c 100644 --- a/.pep8 +++ b/.pep8 @@ -1,3 +1,17 @@ [pep8] -ignore = E261,E262,E265 +# E111 indentation is not a multiple of four +# E121 continuation line under-indented for hanging indent +# E122 continuation line missing indentation or outdented +# E124 closing bracket does not match visual indentation +# E125 continuation line with same indent as next logical line +# E126 continuation line over-indented for hanging indent +# E127 continuation line over-indented for visual indent +# E128 continuation line under-indented for visual indent +# E261 at least two spaces before inline comment +# E262 inline comment should start with '# ' +# E265 block comment should start with '# ' +# E302 expected 2 blank lines, found 1 +# E501 line too long (312 > 160 characters) +# E502 the backslash is redundant between brackets +ignore = E111,E121,E122,E123,E124,E125,E126,E127,E128,E261,E262,E265,E302,E501,E502 max-line-length = 160 \ No newline at end of file