Skip to content

Commit

Permalink
python: ignore warnings from flake8 version 2.0
Browse files Browse the repository at this point in the history
Ignore warnings emitted by flake8 version 2.0 (this is the version
currently provided in the CentOS/RHEL 7 EPEL repository).

Signed-off-by: Lance Richardson <[email protected]>
[[email protected] Updated AUTHORS file]
Signed-off-by: Russell Bryant <[email protected]>
  • Loading branch information
hlrichardson authored and russellb committed Jan 8, 2016
1 parent e9ad921 commit b6429d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ Kmindg G [email protected]
Krishna Kondaka [email protected]
Kyle Mestery [email protected]
Kyle Upton [email protected]
Lance Richardson [email protected]
Lars Kellogg-Stedman [email protected]
Leo Alterman [email protected]
Lilijun [email protected]
Expand Down
5 changes: 4 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -343,17 +343,20 @@ endif
if HAVE_FLAKE8
ALL_LOCAL += flake8-check
# http://flake8.readthedocs.org/en/latest/warnings.html
# E121 continuation line under-indented for hanging indent (only from flake8 v2.0)
# E123 closing bracket does not match indentation of opening bracket's line
# E125 continuation line with same indent as next logical line (only from flake8 v2.0)
# E126 continuation line over-indented for hanging indent
# E127 continuation line over-indented for visual indent
# E128 continuation line under-indented for visual indent
# E129 visually indented line with same indent as next logical line
# E131 continuation line unaligned for hanging indent
# F811 redefinition of unused <name> from line <N> (only from flake8 v2.0)
# W503 line break before binary operator
# D*** -- warnings from flake8-docstrings plugin
# H*** -- warnings from flake8 hacking plugin (custom style checks beyond PEP8)
flake8-check: $(FLAKE8_PYFILES)
$(AM_V_GEN) if flake8 $^ --ignore=E123,E126,E127,E128,E129,E131,W503,D,H ${FLAKE8_FLAGS}; then touch $@; else exit 1; fi
$(AM_V_GEN) if flake8 $^ --ignore=E121,E123,E125,E126,E127,E128,E129,E131,F811,W503,D,H ${FLAKE8_FLAGS}; then touch $@; else exit 1; fi
endif

include $(srcdir)/manpages.mk
Expand Down

0 comments on commit b6429d8

Please sign in to comment.