You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2021/02/04 07:48:23 UTC

[buildstream] branch doraskayo/exclude-eggs-from-linting created (now 9660099)

This is an automated email from the ASF dual-hosted git repository.

tvb pushed a change to branch doraskayo/exclude-eggs-from-linting
in repository https://gitbox.apache.org/repos/asf/buildstream.git.


      at 9660099  .gitignore: ignore the build output directory

This branch includes the following new commits:

     new abf34d8  setup.cfg: exclude .eggs/** and build/** from pycodestyle linting
     new 9660099  .gitignore: ignore the build output directory

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[buildstream] 01/02: setup.cfg: exclude .eggs/** and build/** from pycodestyle linting

Posted by tv...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tvb pushed a commit to branch doraskayo/exclude-eggs-from-linting
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit abf34d83987424278f71961fd7136b359c88a38e
Author: Dor Askayo <do...@gmail.com>
AuthorDate: Tue Jan 29 01:06:25 2019 +0200

    setup.cfg: exclude .eggs/** and build/** from pycodestyle linting
---
 setup.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.cfg b/setup.cfg
index ee56674..e6b0f83 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


[buildstream] 02/02: .gitignore: ignore the build output directory

Posted by tv...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tvb pushed a commit to branch doraskayo/exclude-eggs-from-linting
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 966009997ff9b3119a99232934efb3f1fa745ca5
Author: Dor Askayo <do...@gmail.com>
AuthorDate: Wed Jan 30 23:25:51 2019 +0200

    .gitignore: ignore the build output directory
---
 .gitignore | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitignore b/.gitignore
index 00cb4e2..5c258fa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,9 @@
 buildstream/**/*.pyc
 tests/**/*.pyc
 
+# Build output directory
+build
+
 # Setuptools distribution folder.
 /dist/