Skip to content

Commit eca4662

Browse files
authored
chore: gitignore every Eclipse JDT produced file and folder (#122)
.settings and others show up when using the Claude Code with Java LSP provided by the JDT-LS project.
1 parent 3896a26 commit eca4662

1 file changed

Lines changed: 19 additions & 5 deletions

File tree

.gitignore

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
1-
*.log
2-
hs_err_pid*
3-
/.idea
4-
/target
5-
/local
1+
# Maven and Gradle files
2+
target
3+
build
4+
5+
# Eclipse, Netbeans and IntelliJ files
6+
.*
7+
!/.github
8+
!/.ci
9+
!/.mvn
10+
!.gitignore
11+
!.gitattributes
12+
/nbproject
13+
*.ipr
14+
*.iws
615
*.iml
16+
17+
# Repository wide ignore mac DS_Store files
18+
.DS_Store
19+
20+
# Various local artifacts
721
dependency-reduced-pom.xml
822
/results
923
/async-profiler*/**/*

0 commit comments

Comments
 (0)