-
-
Save carlosgruiz-dev/e1c83ef07bc6511eae3ce71e4735316d to your computer and use it in GitHub Desktop.
.gitignore for Scala, SBT with IntelliJ
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
# sbt | |
# (may want to keep parts of 'project') | |
# from https://alvinalexander.com/source-code/scala/sample-gitignore-file-scala-sbt-intellij-eclipse | |
bin/ | |
project/ | |
target/ | |
build/ | |
# eclipse | |
build | |
.classpath | |
.project | |
.settings | |
.worksheet | |
# intellij idea | |
*.log | |
*.iml | |
*.ipr | |
*.iws | |
.idea | |
# mac | |
.DS_Store | |
# other? | |
.history | |
.scala_dependencies | |
.cache | |
.cache-main | |
#general | |
*.class |
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
# Created by Jayesh J. | |
*.class | |
*.log | |
*.iml | |
*.ipr | |
*.iws | |
.idea | |
out | |
.cache/ | |
.history/ | |
.lib/ | |
dist/* | |
target/ | |
bin/ | |
libexec/ | |
lib_managed/ | |
src_managed/ | |
project/boot/ | |
project/plugins/project/ | |
logs/ | |
project/*-shim.sbt | |
project/project/ | |
project/target/ | |
target/ | |
.scala_dependencies | |
.worksheet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment