exclude gradle build folders from project and add to .gitignore

This commit is contained in:
fitermay
2018-02-06 22:15:55 -05:00
committed by Andrey Vlasovskikh
parent 4169ea9ec6
commit 027d0a169b
5 changed files with 7 additions and 0 deletions

1
python/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
test-system

View File

@@ -0,0 +1,2 @@
src/build
src/.gradle

View File

@@ -4,6 +4,8 @@
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/src/.gradle" />
<excludeFolder url="file://$MODULE_DIR$/src/build" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />

1
python/helpers/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
pydev/build

View File

@@ -4,6 +4,7 @@
<exclude-output />
<content url="file://$MODULE_DIR$/helpers">
<sourceFolder url="file://$MODULE_DIR$/helpers" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/helpers/pydev/build" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />