1
+
2
+ # Created by https://www.gitignore.io/api/intellij,androidstudio,visualstudiocode
3
+ # Edit at https://www.gitignore.io/?templates=intellij,androidstudio,visualstudiocode
4
+
5
+ # ## Intellij ###
6
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8
+
9
+ # User-specific stuff
10
+ .idea /** /workspace.xml
11
+ .idea /** /tasks.xml
12
+ .idea /** /usage.statistics.xml
13
+ .idea /** /dictionaries
14
+ .idea /** /shelf
15
+
16
+ # Generated files
17
+ .idea /** /contentModel.xml
18
+
19
+ # Sensitive or high-churn files
20
+ .idea /** /dataSources /
21
+ .idea /** /dataSources.ids
22
+ .idea /** /dataSources.local.xml
23
+ .idea /** /sqlDataSources.xml
24
+ .idea /** /dynamic.xml
25
+ .idea /** /uiDesigner.xml
26
+ .idea /** /dbnavigator.xml
27
+
28
+ # Gradle
29
+ .idea /** /gradle.xml
30
+ .idea /** /libraries
31
+
32
+ # Gradle and Maven with auto-import
33
+ # When using Gradle or Maven with auto-import, you should exclude module files,
34
+ # since they will be recreated, and may cause churn. Uncomment if using
35
+ # auto-import.
36
+ # .idea/modules.xml
37
+ # .idea/*.iml
38
+ # .idea/modules
39
+ # *.iml
40
+ # *.ipr
41
+
42
+ # CMake
43
+ cmake-build- * /
44
+
45
+ # Mongo Explorer plugin
46
+ .idea /** /mongoSettings.xml
47
+
48
+ # File-based project format
49
+ * .iws
50
+
51
+ # IntelliJ
52
+ .idea /
53
+ out /
54
+
55
+ # mpeltonen/sbt-idea plugin
56
+ .idea_modules /
57
+
58
+ # JIRA plugin
59
+ atlassian-ide-plugin.xml
60
+
61
+ # Cursive Clojure plugin
62
+ .idea /replstate.xml
63
+
64
+ # Crashlytics plugin (for Android Studio and IntelliJ)
65
+ com_crashlytics_export_strings.xml
66
+ crashlytics.properties
67
+ crashlytics-build.properties
68
+ fabric.properties
69
+
70
+ # Editor-based Rest Client
71
+ .idea /httpRequests
72
+
73
+ # Android studio 3.1+ serialized cache file
74
+ .idea /caches /build_file_checksums.ser
75
+
76
+ # ## Intellij Patch ###
77
+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
78
+
79
+ # *.iml
80
+ # modules.xml
81
+ # .idea/misc.xml
82
+ # *.ipr
83
+
84
+ # Sonarlint plugin
85
+ .idea /** /sonarlint /
86
+
87
+ # SonarQube Plugin
88
+ .idea /** /sonarIssues.xml
89
+
90
+ # Markdown Navigator plugin
91
+ .idea /** /markdown-navigator.xml
92
+ .idea /** /markdown-navigator /
93
+
94
+ # ## VisualStudioCode ###
95
+ .vscode /*
96
+ ! .vscode /settings.json
97
+ ! .vscode /tasks.json
98
+ ! .vscode /launch.json
99
+ ! .vscode /extensions.json
100
+
101
+ # ## VisualStudioCode Patch ###
102
+ # Ignore all local history of files
103
+ .history
104
+
105
+ # ## AndroidStudio ###
106
+ # Covers files to be ignored for android development using Android Studio.
107
+
108
+ # Built application files
109
+ * .apk
110
+ * .ap_
111
+
112
+ # Files for the ART/Dalvik VM
113
+ * .dex
114
+
115
+ # Java class files
116
+ * .class
117
+
118
+ # Generated files
119
+ bin /
120
+ gen /
121
+
122
+ # Gradle files
123
+ .gradle
124
+ .gradle /
125
+ build /
126
+
127
+ # Signing files
128
+ .signing /
129
+
130
+ # Local configuration file (sdk path, etc)
131
+ local.properties
132
+
133
+ # Proguard folder generated by Eclipse
134
+ proguard /
135
+
136
+ # Log Files
137
+ * .log
138
+
139
+ # Android Studio
140
+ /* /build /
141
+ /* /local.properties
142
+ /* /out
143
+ /* /* /build
144
+ /* /* /production
145
+ captures /
146
+ .navigation /
147
+ * .ipr
148
+ * ~
149
+ * .swp
150
+
151
+ # Android Patch
152
+ gen-external-apklibs
153
+
154
+ # External native build folder generated in Android Studio 2.2 and later
155
+ .externalNativeBuild
156
+
157
+ # NDK
158
+ obj /
159
+
160
+ # IntelliJ IDEA
161
+ * .iml
162
+ /out /
163
+
164
+ # User-specific configurations
165
+ .idea /caches /
166
+ .idea /libraries /
167
+ .idea /shelf /
168
+ .idea /workspace.xml
169
+ .idea /tasks.xml
170
+ .idea /.name
171
+ .idea /compiler.xml
172
+ .idea /copyright /profiles_settings.xml
173
+ .idea /encodings.xml
174
+ .idea /misc.xml
175
+ .idea /modules.xml
176
+ .idea /scopes /scope_settings.xml
177
+ .idea /dictionaries
178
+ .idea /vcs.xml
179
+ .idea /jsLibraryMappings.xml
180
+ .idea /datasources.xml
181
+ .idea /dataSources.ids
182
+ .idea /sqlDataSources.xml
183
+ .idea /dynamic.xml
184
+ .idea /uiDesigner.xml
185
+ .idea /assetWizardSettings.xml
186
+
187
+ # OS-specific files
188
+ .DS_Store
189
+ .DS_Store ?
190
+ ._ *
191
+ .Spotlight-V100
192
+ .Trashes
193
+ ehthumbs.db
194
+ Thumbs.db
195
+
196
+ # Legacy Eclipse project files
197
+ .classpath
198
+ .project
199
+ .cproject
200
+ .settings /
201
+
202
+ # Mobile Tools for Java (J2ME)
203
+ .mtj.tmp /
204
+
205
+ # Package Files #
206
+ * .war
207
+ * .ear
208
+
209
+ # virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
210
+ hs_err_pid *
211
+
212
+ # # Plugin-specific files:
213
+
214
+ # mpeltonen/sbt-idea plugin
215
+
216
+ # JIRA plugin
217
+
218
+ # Mongo Explorer plugin
219
+ .idea /mongoSettings.xml
220
+
221
+ # Crashlytics plugin (for Android Studio and IntelliJ)
222
+
223
+ # ## AndroidStudio Patch ###
224
+
225
+ ! /gradle /wrapper /gradle-wrapper.jar
226
+
227
+ # End of https://www.gitignore.io/api/intellij,androidstudio,visualstudiocode
0 commit comments