Skip to content

Instantly share code, notes, and snippets.

@YSakhno
Created April 29, 2024 21:03
Show Gist options
  • Save YSakhno/067d1bca89faa57d902429a18391ed57 to your computer and use it in GitHub Desktop.
Save YSakhno/067d1bca89faa57d902429a18391ed57 to your computer and use it in GitHub Desktop.
Latest custom settings for new Kotlin projects (built with Gradle)
#
# 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
### 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