Allow the exclusion of files in the `.vscode/` directory to be overridden via negated patterns (gitignore patterns beginning with `!`) by changing the pattern in `.gitignore` from `.vscode/` to `.vscode/*` (i.e., by ignoring the files in `.vscode/` rather than the `.vscode/` directory itself).
61 lines
629 B
Plaintext
61 lines
629 B
Plaintext
# Gradle
|
|
.gradle/
|
|
build/
|
|
!gradle/wrapper/gradle-wrapper.jar
|
|
!**/src/main/**/build/
|
|
!**/src/test/**/build/
|
|
.kotlin/
|
|
|
|
# Server testing directory
|
|
run/
|
|
|
|
# IntelliJ IDEA
|
|
.idea/
|
|
*.iws
|
|
*.iml
|
|
*.ipr
|
|
out/
|
|
!**/src/main/**/out/
|
|
!**/src/test/**/out/
|
|
|
|
# Eclipse
|
|
.apt_generated
|
|
.classpath
|
|
.factorypath
|
|
.project
|
|
.settings
|
|
.springBeans
|
|
.sts4-cache
|
|
bin/
|
|
!**/src/main/**/bin/
|
|
!**/src/test/**/bin/
|
|
|
|
# NetBeans
|
|
/nbproject/private/
|
|
/nbbuild/
|
|
/dist/
|
|
/nbdist/
|
|
/.nb-gradle/
|
|
|
|
# VS Code
|
|
.vscode/*
|
|
|
|
# Mac OS
|
|
.DS_Store
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
*.swp
|
|
*~
|
|
|
|
# Template specific
|
|
libs/HytaleServer.jar
|
|
buildSrc/ |