Created
April 29, 2024 21:03
-
-
Save YSakhno/067d1bca89faa57d902429a18391ed57 to your computer and use it in GitHub Desktop.
Latest custom settings for new Kotlin projects (built with Gradle)
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
# | |
# https://help.github.com/articles/dealing-with-line-endings/ | |
# | |
# Linux start script should use lf | |
/gradlew text eol=lf | |
# These are Windows script files and should use crlf | |
*.bat text eol=crlf | |
*.cmd text eol=crlf | |
*.jar binary |
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
### Gradle ### | |
/.gradle/ | |
build/ | |
!**/src/**/build/ | |
!/gradle/wrapper/gradle-wrapper.jar | |
### Eclipse, STS ### | |
.metadata/ | |
.settings/ | |
.sts4-cache/ | |
bin/ | |
.apt_generated | |
.checkstyle | |
.classpath | |
.factorypath | |
.loadpath | |
.project | |
.springBeans | |
*.launch | |
!**/src/**/bin/ | |
### IntelliJ IDEA ### | |
.idea/ | |
out/ | |
*.iml | |
*.ipr | |
*.iws | |
!**/src/**/out/ | |
### NetBeans ### | |
/nbproject/private/ | |
/nbbuild/ | |
/dist/ | |
/nbdist/ | |
/.nb-gradle/ | |
### VS Code ### | |
.vscode/ | |
### SublimeText + TextMate ### | |
*.sublime-workspace | |
*.sublime-project | |
*.tmproj | |
*.tmproject | |
### Vim ### | |
*.sw[op] | |
### Mac OSX + Windows ### | |
$RECYCLE.BIN/ | |
.DS_Store | |
[Dd]esktop.ini | |
Thumbs.db | |
*.lnk | |
### Project-specific ### | |
/tmp/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment