Last active
November 30, 2023 08:25
-
-
Save amaalali/3e70eb1d0ede50f52ecd5db00732e038 to your computer and use it in GitHub Desktop.
My standard .gitignore for scala projects
This file contains 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
bin/ | |
# Scala/SBT specific | |
project/ | |
target/ | |
build/ | |
# Scala-Cli build folder | |
.scala-build/ | |
# Mill build tool | |
out/ | |
# tools | |
.bloop/ | |
.bsp/ | |
.metals/ | |
project/metals.sbt # Don't force metals on everyone | |
.idea/ | |
.vscode/ | |
# Ignore worksheets for hacking around purposes | |
*.worksheet.sc | |
# OS | |
.DS_Store |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment