Skip to content

Commit 86870e6

Browse files
committed
Add .gitignore
1 parent 35d3de4 commit 86870e6

File tree

1 file changed

+340
-0
lines changed

1 file changed

+340
-0
lines changed

Diff for: .gitignore

+340
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,340 @@
1+
2+
# Created by https://www.gitignore.io/api/xcode,macos,windows,textmate,sublimetext,intellij+all,androidstudio,visualstudiocode
3+
# Edit at https://www.gitignore.io/?templates=xcode,macos,windows,textmate,sublimetext,intellij+all,androidstudio,visualstudiocode
4+
5+
### Intellij+all ###
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+
out/
53+
54+
# mpeltonen/sbt-idea plugin
55+
.idea_modules/
56+
57+
# JIRA plugin
58+
atlassian-ide-plugin.xml
59+
60+
# Cursive Clojure plugin
61+
.idea/replstate.xml
62+
63+
# Crashlytics plugin (for Android Studio and IntelliJ)
64+
com_crashlytics_export_strings.xml
65+
crashlytics.properties
66+
crashlytics-build.properties
67+
fabric.properties
68+
69+
# Editor-based Rest Client
70+
.idea/httpRequests
71+
72+
# Android studio 3.1+ serialized cache file
73+
.idea/caches/build_file_checksums.ser
74+
75+
### Intellij+all Patch ###
76+
# Ignores the whole .idea folder and all .iml files
77+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
78+
79+
.idea/
80+
81+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
82+
83+
*.iml
84+
modules.xml
85+
.idea/misc.xml
86+
*.ipr
87+
88+
# Sonarlint plugin
89+
.idea/sonarlint
90+
91+
### macOS ###
92+
# General
93+
.DS_Store
94+
.AppleDouble
95+
.LSOverride
96+
97+
# Icon must end with two \r
98+
Icon
99+
100+
# Thumbnails
101+
._*
102+
103+
# Files that might appear in the root of a volume
104+
.DocumentRevisions-V100
105+
.fseventsd
106+
.Spotlight-V100
107+
.TemporaryItems
108+
.Trashes
109+
.VolumeIcon.icns
110+
.com.apple.timemachine.donotpresent
111+
112+
# Directories potentially created on remote AFP share
113+
.AppleDB
114+
.AppleDesktop
115+
Network Trash Folder
116+
Temporary Items
117+
.apdisk
118+
119+
### SublimeText ###
120+
# Cache files for Sublime Text
121+
*.tmlanguage.cache
122+
*.tmPreferences.cache
123+
*.stTheme.cache
124+
125+
# Workspace files are user-specific
126+
*.sublime-workspace
127+
128+
# Project files should be checked into the repository, unless a significant
129+
# proportion of contributors will probably not be using Sublime Text
130+
# *.sublime-project
131+
132+
# SFTP configuration file
133+
sftp-config.json
134+
135+
# Package control specific files
136+
Package Control.last-run
137+
Package Control.ca-list
138+
Package Control.ca-bundle
139+
Package Control.system-ca-bundle
140+
Package Control.cache/
141+
Package Control.ca-certs/
142+
Package Control.merged-ca-bundle
143+
Package Control.user-ca-bundle
144+
oscrypto-ca-bundle.crt
145+
bh_unicode_properties.cache
146+
147+
# Sublime-github package stores a github token in this file
148+
# https://packagecontrol.io/packages/sublime-github
149+
GitHub.sublime-settings
150+
151+
### TextMate ###
152+
*.tmproj
153+
*.tmproject
154+
tmtags
155+
156+
### VisualStudioCode ###
157+
.vscode/*
158+
!.vscode/settings.json
159+
!.vscode/tasks.json
160+
!.vscode/launch.json
161+
!.vscode/extensions.json
162+
163+
### VisualStudioCode Patch ###
164+
# Ignore all local history of files
165+
.history
166+
167+
### Windows ###
168+
# Windows thumbnail cache files
169+
Thumbs.db
170+
Thumbs.db:encryptable
171+
ehthumbs.db
172+
ehthumbs_vista.db
173+
174+
# Dump file
175+
*.stackdump
176+
177+
# Folder config file
178+
[Dd]esktop.ini
179+
180+
# Recycle Bin used on file shares
181+
$RECYCLE.BIN/
182+
183+
# Windows Installer files
184+
*.cab
185+
*.msi
186+
*.msix
187+
*.msm
188+
*.msp
189+
190+
# Windows shortcuts
191+
*.lnk
192+
193+
### Xcode ###
194+
# Xcode
195+
#
196+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
197+
198+
## User settings
199+
xcuserdata/
200+
201+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
202+
*.xcscmblueprint
203+
*.xccheckout
204+
205+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
206+
build/
207+
DerivedData/
208+
*.moved-aside
209+
*.pbxuser
210+
!default.pbxuser
211+
*.mode1v3
212+
!default.mode1v3
213+
*.mode2v3
214+
!default.mode2v3
215+
*.perspectivev3
216+
!default.perspectivev3
217+
218+
## Xcode Patch
219+
*.xcodeproj/*
220+
!*.xcodeproj/project.pbxproj
221+
!*.xcodeproj/xcshareddata/
222+
!*.xcworkspace/contents.xcworkspacedata
223+
/*.gcno
224+
225+
### Xcode Patch ###
226+
**/xcshareddata/WorkspaceSettings.xcsettings
227+
228+
### AndroidStudio ###
229+
# Covers files to be ignored for android development using Android Studio.
230+
231+
# Built application files
232+
*.apk
233+
*.ap_
234+
235+
# Files for the ART/Dalvik VM
236+
*.dex
237+
238+
# Java class files
239+
*.class
240+
241+
# Generated files
242+
bin/
243+
gen/
244+
245+
# Gradle files
246+
.gradle
247+
.gradle/
248+
249+
# Signing files
250+
.signing/
251+
252+
# Local configuration file (sdk path, etc)
253+
local.properties
254+
255+
# Proguard folder generated by Eclipse
256+
proguard/
257+
258+
# Log Files
259+
*.log
260+
261+
# Android Studio
262+
/*/build/
263+
/*/local.properties
264+
/*/out
265+
/*/*/build
266+
/*/*/production
267+
captures/
268+
.navigation/
269+
*~
270+
*.swp
271+
272+
# Android Patch
273+
gen-external-apklibs
274+
275+
# External native build folder generated in Android Studio 2.2 and later
276+
.externalNativeBuild
277+
278+
# NDK
279+
obj/
280+
281+
# IntelliJ IDEA
282+
/out/
283+
284+
# User-specific configurations
285+
.idea/caches/
286+
.idea/libraries/
287+
.idea/shelf/
288+
.idea/workspace.xml
289+
.idea/tasks.xml
290+
.idea/.name
291+
.idea/compiler.xml
292+
.idea/copyright/profiles_settings.xml
293+
.idea/encodings.xml
294+
.idea/modules.xml
295+
.idea/scopes/scope_settings.xml
296+
.idea/dictionaries
297+
.idea/vcs.xml
298+
.idea/jsLibraryMappings.xml
299+
.idea/datasources.xml
300+
.idea/dataSources.ids
301+
.idea/sqlDataSources.xml
302+
.idea/dynamic.xml
303+
.idea/uiDesigner.xml
304+
.idea/assetWizardSettings.xml
305+
306+
# OS-specific files
307+
.DS_Store?
308+
309+
# Legacy Eclipse project files
310+
.classpath
311+
.project
312+
.cproject
313+
.settings/
314+
315+
# Mobile Tools for Java (J2ME)
316+
.mtj.tmp/
317+
318+
# Package Files #
319+
*.war
320+
*.ear
321+
322+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
323+
hs_err_pid*
324+
325+
## Plugin-specific files:
326+
327+
# mpeltonen/sbt-idea plugin
328+
329+
# JIRA plugin
330+
331+
# Mongo Explorer plugin
332+
.idea/mongoSettings.xml
333+
334+
# Crashlytics plugin (for Android Studio and IntelliJ)
335+
336+
### AndroidStudio Patch ###
337+
338+
!/gradle/wrapper/gradle-wrapper.jar
339+
340+
# End of https://www.gitignore.io/api/xcode,macos,windows,textmate,sublimetext,intellij+all,androidstudio,visualstudiocode

0 commit comments

Comments
 (0)