Hashar has uploaded a new change for review. https://gerrit.wikimedia.org/r/53360
Change subject: pep8 configuration file ...................................................................... pep8 configuration file irecho is not detected by pep8 since the filename is missing the '.py' suffix. Ignore tabs used as indentation (W191) since mark loves tabs. Ignore continuation line under-indented for visual indent (E128) does not play well when using tabs. Change-Id: I41416cc532dde890837014039c0cc24a2a12e8ee --- A .pep8 1 file changed, 5 insertions(+), 0 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/operations/debs/ircecho refs/changes/60/53360/1 diff --git a/.pep8 b/.pep8 new file mode 100644 index 0000000..6000ad8 --- /dev/null +++ b/.pep8 @@ -0,0 +1,5 @@ +[pep8] +filename=ircecho +# W191: indentation contains tabs +# E128: continuation line under-indented for visual indent +ignore=W191,E128 -- To view, visit https://gerrit.wikimedia.org/r/53360 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I41416cc532dde890837014039c0cc24a2a12e8ee Gerrit-PatchSet: 1 Gerrit-Project: operations/debs/ircecho Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
