Skip to content
Snippets Groups Projects
Commit d723dc47 authored by Uri Laserson's avatar Uri Laserson
Browse files

Exclude versioneer files from linter

parent e26967a3
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ set -o errexit
# - https://bitbucket.org/logilab/pylint/issues/701/false-positives-with-not-an-iterable-and
# - https://bitbucket.org/logilab/pylint/issues/58
find . -name '*.py' \
find . -name '*.py' -not -name 'versioneer.py' -not -name _version.py \
| xargs pylint \
--errors-only \
--disable=print-statement,unsubscriptable-object,not-an-iterable,no-member
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment