summaryrefslogtreecommitdiff
path: root/pycodestyle.sh
diff options
context:
space:
mode:
authorsme <s-m-e@users.noreply.github.com>2018-04-26 05:20:35 +0200
committerVal Neekman <un33kvu@gmail.com>2018-04-25 23:20:35 -0400
commit5c766dd99d5675f70b34cfabc3a8b8556a0065f1 (patch)
treee75950d1ddbf986b175590ff587dfee5d5bf7f3b /pycodestyle.sh
parent4c1a344652dfef32f786a96d94b351f4277da964 (diff)
downloadpython-slugify-5c766dd99d5675f70b34cfabc3a8b8556a0065f1.tar.gz
Support for case sensitivity (#54)
* added support for case sensitivity * remove empty line * ignore W605 warning from pycodestyle * doc string for lowercase keyword argument
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