summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorPhil Dawson <phildawson.0807@gmail.com>2019-02-19 17:04:58 +0000
committerPhil Dawson <phildawson.0807@gmail.com>2019-02-19 17:04:58 +0000
commit52c0c185d964bf696e320be97663c412e020b427 (patch)
tree79e2fcb73da802121bc1c4ed585b368d24a08819 /setup.cfg
parent99764715d68acdd95420eb1bbf16083b502ba668 (diff)
parentfec626e257e0c97b16824b1fc9ef8d45bccbd92f (diff)
downloadbuildstream-52c0c185d964bf696e320be97663c412e020b427.tar.gz
Merge branch 'phil/additional-linting-excludes' into 'master'
setup.cfg: exclude tmp/**, .eggs/** and build/** from pycodestyle linting See merge request BuildStream/buildstream!1165
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/**