More recent versions of pep8 check for the indentation level of closing parenthesis in a way that is incompatible with the way we use in our code. Our style is still pep8 compliant, and was re-allowed in even more recent versions of the tool, but still we have to disable the check, for the time being.
Signed-off-by: Michele Tartara <[email protected]> --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 53a8382..9eaacbb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1914,6 +1914,7 @@ hs-check: hs-tests hs-shell # (since our indent level is not 4) # E125: continuation line does not distinguish itself from next logical line # (since our indent level is not 4) +# E123: closing bracket does not match indentation of opening bracket's line # E127: continuation line over-indented for visual indent # (since our indent level is not 4) # note: do NOT add E128 here; it's a valid style error in most cases! @@ -1922,7 +1923,7 @@ hs-check: hs-tests hs-shell # instead of silencing it # E261: at least two spaces before inline comment # E501: line too long (80 characters) -PEP8_IGNORE = E111,E121,E125,E127,E261,E501 +PEP8_IGNORE = E111,E121,E123,E125,E127,E261,E501 # For excluding pep8 expects filenames only, not whole paths PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES)))) -- 1.7.10.4
