Hashar has uploaded a new change for review. https://gerrit.wikimedia.org/r/81033
Change subject: configuration for pep8/flake8 ...................................................................... configuration for pep8/flake8 Adds in 'make-release' as a python file pattern since both tools defaults to '*.py' that would not catch it. Ignored: - W191 indentation contains tabs - E501 line too long (X > 79 characters) Change-Id: I0e886a7af32c43ec4e7448584e512d3984e84782 --- A tox.ini 1 file changed, 11 insertions(+), 0 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/tools/release refs/changes/33/81033/1 diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..87df1fd --- /dev/null +++ b/tox.ini @@ -0,0 +1,11 @@ +[flake8] +filename=*.py,make-release +; W191 indentation contains tabs +; E501 line too long (X > 79 characters) +ignore=W191,E501 + +[pep8] +filename=*.py,make-release +; W191 indentation contains tabs +; E501 line too long (X > 79 characters) +ignore=W191,E501 -- To view, visit https://gerrit.wikimedia.org/r/81033 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I0e886a7af32c43ec4e7448584e512d3984e84782 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/tools/release Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
