diff options
| author | sme <s-m-e@users.noreply.github.com> | 2018-04-26 05:20:35 +0200 |
|---|---|---|
| committer | Val Neekman <un33kvu@gmail.com> | 2018-04-25 23:20:35 -0400 |
| commit | 5c766dd99d5675f70b34cfabc3a8b8556a0065f1 (patch) | |
| tree | e75950d1ddbf986b175590ff587dfee5d5bf7f3b /pycodestyle.sh | |
| parent | 4c1a344652dfef32f786a96d94b351f4277da964 (diff) | |
| download | python-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-x | pycodestyle.sh | 4 |
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 |
