summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorDor Askayo <dor.askayo@gmail.com>2019-01-29 01:06:25 +0200
committerPhil Dawson <phil.dawson@codethink.co.uk>2019-02-19 16:01:16 +0000
commit3df140b2bd4bff68cabc33837390d1b7e97761ca (patch)
treedc3c0070fecb99996c21b13e80672b25c0296210 /setup.cfg
parent99764715d68acdd95420eb1bbf16083b502ba668 (diff)
downloadbuildstream-3df140b2bd4bff68cabc33837390d1b7e97761ca.tar.gz
setup.cfg: exclude .eggs/**, build/** and tmp/** from pycodestyle linting
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index ee566745e..ec20435ce 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -20,4 +20,4 @@ env =
[pycodestyle]
max-line-length = 119
ignore = E129,E125,W504,W605
-exclude = .git/**,.tox/**,doc/source/conf.py,buildstream/_fuse/fuse.py,buildstream/_protos/**/*py
+exclude = .git/**,.tox/**,.eggs/**,build/**,doc/source/conf.py,buildstream/_fuse/fuse.py,buildstream/_protos/**/*py,tmp/**