Skip to content

Commit

Permalink
GEODE-2749: ignore bin/ and out/ which are commonly created by IDEs
Browse files Browse the repository at this point in the history
  • Loading branch information
kirklund committed Apr 3, 2017
1 parent abb27b3 commit 4a09e88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ build/
.idea/
build-eclipse/
/tags

out/
bin/


*.iml
Expand All @@ -27,4 +28,4 @@ build-eclipse/
*.orig
geode-spark-connector/**/target/
geode-spark-connector/project/project/
geode-pulse/screenshots/
geode-pulse/screenshots/
2 changes: 2 additions & 0 deletions gradle/rat.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ rat {
'.idea/**',
'geode-spark-connector/.idea/**',
'**/tags',
'**/out/**',
'**/bin/**',

// text files
'**/*.fig',
Expand Down

0 comments on commit 4a09e88

Please sign in to comment.