Last active
August 29, 2015 13:56
-
-
Save andreafey/9122858 to your computer and use it in GitHub Desktop.
.gitignore_global scala + java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# hidden files | |
.* | |
# but not .gitignore | |
!/.gitignore | |
build/ | |
bin/ | |
*.log | |
*.zip | |
### Scala/Java ### | |
*.class | |
dist/* | |
### Scala ### | |
# sbt specific | |
.cache/ | |
.history/ | |
.lib/ | |
target/ | |
lib_managed/ | |
src_managed/ | |
project/boot/ | |
project/plugins/project/ | |
# Scala-IDE specific | |
.scala_dependencies | |
.worksheet | |
### Java ### | |
*.jar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment