Skip to content

Commit e1f5a5d

Browse files
author
Vincent VL
committed
Update gitignore to ignore OSX specific files, Intellij files, Maven files
1 parent adad18e commit e1f5a5d

File tree

1 file changed

+123
-2
lines changed

1 file changed

+123
-2
lines changed

.gitignore

+123-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,125 @@
1-
/target
1+
### OSX ###
2+
.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
6+
# Icon must end with two \r
7+
Icon
8+
9+
10+
# Thumbnails
11+
._*
12+
13+
# Files that might appear in the root of a volume
14+
.DocumentRevisions-V100
15+
.fseventsd
16+
.Spotlight-V100
17+
.TemporaryItems
18+
.Trashes
19+
.VolumeIcon.icns
20+
21+
# Directories potentially created on remote AFP share
22+
.AppleDB
23+
.AppleDesktop
24+
Network Trash Folder
25+
Temporary Items
26+
.apdisk
27+
28+
29+
### Intellij ###
30+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
31+
32+
*.iml
33+
34+
## Directory-based project format:
35+
.idea/
36+
# if you remove the above rule, at least ignore the following:
37+
38+
# User-specific stuff:
39+
# .idea/workspace.xml
40+
# .idea/tasks.xml
41+
# .idea/dictionaries
42+
43+
# Sensitive or high-churn files:
44+
# .idea/dataSources.ids
45+
# .idea/dataSources.xml
46+
# .idea/sqlDataSources.xml
47+
# .idea/dynamic.xml
48+
# .idea/uiDesigner.xml
49+
50+
# Gradle:
51+
# .idea/gradle.xml
52+
# .idea/libraries
53+
54+
# Mongo Explorer plugin:
55+
# .idea/mongoSettings.xml
56+
57+
## File-based project format:
58+
*.ipr
59+
*.iws
60+
61+
## Plugin-specific files:
62+
63+
# IntelliJ
64+
/out/
65+
66+
# mpeltonen/sbt-idea plugin
67+
.idea_modules/
68+
69+
# JIRA plugin
70+
atlassian-ide-plugin.xml
71+
72+
# Crashlytics plugin (for Android Studio and IntelliJ)
73+
com_crashlytics_export_strings.xml
74+
crashlytics.properties
75+
crashlytics-build.properties
76+
77+
78+
### Eclipse ###
79+
*.pydevproject
80+
.metadata
81+
.gradle
82+
bin/
83+
tmp/
84+
*.tmp
85+
*.bak
86+
*.swp
87+
*~.nib
88+
local.properties
89+
.settings/
90+
.loadpath
91+
92+
# Eclipse Core
293
.project
94+
95+
# External tool builders
96+
.externalToolBuilders/
97+
98+
# Locally stored "Eclipse launch configurations"
99+
*.launch
100+
101+
# CDT-specific
102+
.cproject
103+
104+
# JDT-specific (Eclipse Java Development Tools)
3105
.classpath
4-
.settings
106+
107+
# PDT-specific
108+
.buildpath
109+
110+
# sbteclipse plugin
111+
.target
112+
113+
# TeXlipse plugin
114+
.texlipse
115+
116+
117+
### Maven ###
118+
target/
119+
pom.xml.tag
120+
pom.xml.releaseBackup
121+
pom.xml.versionsBackup
122+
pom.xml.next
123+
release.properties
124+
dependency-reduced-pom.xml
125+
buildNumber.properties

0 commit comments

Comments
 (0)