Dor Askayo pushed to branch doraskayo/exclude-eggs-from-linting at BuildStream / buildstream
Commits:
2 changed files:
Changes:
... | ... | @@ -2,6 +2,9 @@ |
2 | 2 |
buildstream/**/*.pyc
|
3 | 3 |
tests/**/*.pyc
|
4 | 4 |
|
5 |
+# Build output directory
|
|
6 |
+build
|
|
7 |
+ |
|
5 | 8 |
# Setuptools distribution folder.
|
6 | 9 |
/dist/
|
7 | 10 |
|
... | ... | @@ -20,4 +20,4 @@ env = |
20 | 20 |
[pycodestyle]
|
21 | 21 |
max-line-length = 119
|
22 | 22 |
ignore = E129,E125,W504,W605
|
23 |
-exclude = .git/**,.tox/**,doc/source/conf.py,buildstream/_fuse/fuse.py,buildstream/_protos/**/*py
|
|
23 |
+exclude = .git/**,.tox/**,.eggs/**,build/**,doc/source/conf.py,buildstream/_fuse/fuse.py,buildstream/_protos/**/*py
|