summaryrefslogtreecommitdiff
path: root/pep8.sh
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2016-08-26 11:58:56 -0400
committerVal Neekman <val@neekware.com>2016-08-26 11:58:56 -0400
commit6472f8fae4088f323a69ef5086f0f97268be88f8 (patch)
treeeb61dadaf4a7c91efcfe6463851efd7e46424bb9 /pep8.sh
parent66146885159df3cf24e9ebe32aa288b9900ea052 (diff)
downloadpython-slugify-1.2.1.tar.gz
add py3.5 support, add manifest.in file, add more tests1.2.1
Diffstat (limited to 'pep8.sh')
-rwxr-xr-xpep8.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/pep8.sh b/pep8.sh
index f48f800..a8e960a 100755
--- a/pep8.sh
+++ b/pep8.sh
@@ -1,14 +1,11 @@
#!/bin/bash
-echo -e "\nRunning: pep8 ... \n"
-
# Ignoring autogenerated files
# -- Migration directories
# Ignoring error codes
# -- E128 continuation line under-indented for visual indent
+# -- E261 at least two spaces before inline comment
# -- E225 missing whitespace around operator
# -- E501 line too long
-pep8 --ignore=E128,E225,E501 slugify test.py setup.py
-
-echo -e "Done.\n"
+pep8 --ignore=E128,E261,E225,E501 slugify test.py setup.py