add and reformat the .gitignore
This commit is contained in:
parent
56269df419
commit
eab970e5c0
|
@ -1,14 +1,33 @@
|
||||||
target/
|
# eclipse
|
||||||
.classpath
|
.classpath
|
||||||
.project
|
.project
|
||||||
.settings
|
.settings
|
||||||
|
|
||||||
|
# maven
|
||||||
|
target/
|
||||||
*/src/main/java/META-INF/
|
*/src/main/java/META-INF/
|
||||||
.pmd
|
|
||||||
|
# common junk
|
||||||
*.log
|
*.log
|
||||||
*.swp
|
*.swp
|
||||||
*.diff
|
*.diff
|
||||||
*.patch
|
*.patch
|
||||||
|
|
||||||
|
# intellij
|
||||||
*.iml
|
*.iml
|
||||||
*.ipr
|
*.ipr
|
||||||
*.iws
|
*.iws
|
||||||
.idea/
|
.idea/
|
||||||
|
|
||||||
|
# Mac filesystem dust
|
||||||
|
/.DS_Store
|
||||||
|
|
||||||
|
# pmd
|
||||||
|
.pmdruleset
|
||||||
|
.pmd
|
||||||
|
|
||||||
|
# netbeans
|
||||||
|
/nbproject
|
||||||
|
|
||||||
|
# vim
|
||||||
|
.*.sw[a-p]
|
||||||
|
|
Loading…
Reference in New Issue