12345678910111213141516171819202122232425262728293031 |
- # Compiled nonsense that does not belong in *source* control
- /build
- /bin
- /.gradle
- /minecraft
- /out
- /run
- /classes
- /old
- # IDE nonsense that could go in source control but really shouldn't
- .classpath
- .project
- .metadata
- .settings
- *.launch
- *.iml
- .idea
- *.ipr
- *.iws
- # Sekrit files
- private.properties
- # Files from bad operating systems :^)
- Thumbs.db
- .DS_Store
- secret\.properties
- local\.properties
|