From d723dc477bf0e6f9501525dcde5ee13848c6d2c6 Mon Sep 17 00:00:00 2001
From: Uri Laserson <uri.laserson@gmail.com>
Date: Tue, 15 Aug 2017 23:58:01 -0400
Subject: [PATCH] Exclude versioneer files from linter

---
 lint.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lint.sh b/lint.sh
index 783cac3c..32fbffb2 100755
--- a/lint.sh
+++ b/lint.sh
@@ -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
-- 
GitLab