summaryrefslogtreecommitdiff
path: root/pycodestyle.sh
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2018-09-02 12:36:52 -0400
committerVal Neekman <val@neekware.com>2018-09-02 12:36:52 -0400
commitbeca50eaff20ca20652df782354a8f184c1eaf4c (patch)
treef0afd8a85c1069d5d1f1922cdf5fb45bd0c93841 /pycodestyle.sh
parent4c1a344652dfef32f786a96d94b351f4277da964 (diff)
downloadpython-slugify-1.2.6.tar.gz
release 1.2.6, case sensitive slug support1.2.6
Diffstat (limited to 'pycodestyle.sh')
-rwxr-xr-xpycodestyle.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/pycodestyle.sh b/pycodestyle.sh
index ab6766e..cd6122d 100755
--- a/pycodestyle.sh
+++ b/pycodestyle.sh
@@ -7,5 +7,7 @@
# -- E261 at least two spaces before inline comment
# -- E225 missing whitespace around operator
# -- E501 line too long
+# Ignoring warning codes
+# -- W605 invalid escape sequence '\d'
-pycodestyle --ignore=E128,E261,E225,E501 slugify test.py setup.py
+pycodestyle --ignore=E128,E261,E225,E501,W605 slugify test.py setup.py