summaryrefslogtreecommitdiff
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
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
-rw-r--r--.gitignore3
-rw-r--r--setup.cfg2
2 files changed, 4 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 00cb4e2c4..5c258fad4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,9 @@
buildstream/**/*.pyc
tests/**/*.pyc
+# Build output directory
+build
+
# Setuptools distribution folder.
/dist/
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/**