File tree 1 file changed +142
-0
lines changed
1 file changed +142
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Created by http://www.gitignore.io
2
+
3
+ # ## Windows ###
4
+ # Windows image file caches
5
+ Thumbs.db
6
+ ehthumbs.db
7
+
8
+ # Folder config file
9
+ Desktop.ini
10
+
11
+ # Recycle Bin used on file shares
12
+ $RECYCLE.BIN /
13
+
14
+ # Windows Installer files
15
+ * .cab
16
+ * .msi
17
+ * .msm
18
+ * .msp
19
+
20
+
21
+ # ## OSX ###
22
+ .DS_Store
23
+ .AppleDouble
24
+ .LSOverride
25
+
26
+ # Icon must ends with two \r.
27
+ Icon
28
+
29
+
30
+ # Thumbnails
31
+ ._ *
32
+
33
+ # Files that might appear on external disk
34
+ .Spotlight-V100
35
+ .Trashes
36
+
37
+
38
+ # ## Linux ###
39
+ * ~
40
+
41
+
42
+ # ## Java ###
43
+ * .class
44
+
45
+ # Mobile Tools for Java (J2ME)
46
+ .mtj.tmp /
47
+
48
+ # Package Files #
49
+ * .jar
50
+ * .war
51
+ * .ear
52
+
53
+ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
54
+ hs_err_pid *
55
+
56
+
57
+ # ## Maven ###
58
+ target /
59
+ pom.xml.tag
60
+ pom.xml.releaseBackup
61
+ pom.xml.next
62
+ release.properties
63
+ dependency-reduced-pom.xml
64
+
65
+
66
+ # ## Log4J ###
67
+ * .log
68
+
69
+
70
+ # ## Intellij ###
71
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode
72
+
73
+ # # Directory-based project format
74
+ .idea /
75
+ # if you remove the above rule, at least ignore user-specific stuff:
76
+ # .idea/workspace.xml
77
+ # .idea/tasks.xml
78
+ # and these sensitive or high-churn files:
79
+ # .idea/dataSources.ids
80
+ # .idea/dataSources.xml
81
+ # .idea/sqlDataSources.xml
82
+ # .idea/dynamic.xml
83
+
84
+ # # File-based project format
85
+ * .ipr
86
+ * .iws
87
+ * .iml
88
+
89
+ # # Additional for IntelliJ
90
+ out /
91
+
92
+ # generated by mpeltonen/sbt-idea plugin
93
+ .idea_modules /
94
+
95
+ # generated by JIRA plugin
96
+ atlassian-ide-plugin.xml
97
+
98
+ # generated by Crashlytics plugin (for Android Studio and Intellij)
99
+ com_crashlytics_export_strings.xml
100
+
101
+
102
+ # ## Eclipse ###
103
+ * .pydevproject
104
+ .metadata
105
+ .gradle
106
+ bin /
107
+ tmp /
108
+ * .tmp
109
+ * .bak
110
+ * .swp
111
+ * ~.nib
112
+ local.properties
113
+ .settings /
114
+ .loadpath
115
+
116
+ # External tool builders
117
+ .externalToolBuilders /
118
+
119
+ # Locally stored "Eclipse launch configurations"
120
+ * .launch
121
+
122
+ # CDT-specific
123
+ .cproject
124
+
125
+ # PDT-specific
126
+ .buildpath
127
+
128
+ # sbteclipse plugin
129
+ .target
130
+
131
+ # TeXlipse plugin
132
+ .texlipse
133
+
134
+
135
+ # ## NetBeans ###
136
+ nbproject /private /
137
+ build /
138
+ nbbuild /
139
+ dist /
140
+ nbdist /
141
+ nbactions.xml
142
+ nb-configuration.xml
You can’t perform that action at this time.
0 commit comments