Skip to content

Commit cfb0167

Browse files
committed
Better .gitignore
Signed-off-by: Yoann Rodière <[email protected]>
1 parent 6b368e9 commit cfb0167

File tree

1 file changed

+34
-18
lines changed

1 file changed

+34
-18
lines changed

.gitignore

+34-18
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,39 @@
1-
# Compiled class file
2-
*.class
1+
#Maven
2+
target/
3+
pom.xml.tag
4+
pom.xml.releaseBackup
5+
pom.xml.versionsBackup
6+
release.properties
37

4-
# Log file
5-
*.log
8+
# Eclipse
9+
.project
10+
.classpath
11+
.settings/
12+
bin/
613

7-
# BlueJ files
8-
*.ctxt
14+
# IntelliJ
15+
.idea
16+
*.ipr
17+
*.iml
18+
*.iws
919

10-
# Mobile Tools for Java (J2ME)
11-
.mtj.tmp/
20+
# NetBeans
21+
nb-configuration.xml
1222

13-
# Package Files #
14-
*.jar
15-
*.war
16-
*.nar
17-
*.ear
18-
*.zip
19-
*.tar.gz
20-
*.rar
23+
# Visual Studio Code
24+
.vscode
25+
.factorypath
2126

22-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23-
hs_err_pid*
27+
# OSX
28+
.DS_Store
29+
30+
# Vim
31+
*.swp
32+
*.swo
33+
34+
# patch
35+
*.orig
36+
*.rej
37+
38+
# Local environment
39+
.env

0 commit comments

Comments
 (0)