Skip to content

Commit 14adcb4

Browse files
committed
Add .gitignore
1 parent 312f2c7 commit 14adcb4

File tree

1 file changed

+174
-0
lines changed

1 file changed

+174
-0
lines changed

.gitignore

Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
## Generic patterns ##
2+
3+
### Files, specifically designated as private by convention ###
4+
5+
private*
6+
[Ii]gnore
7+
8+
### Build output ###
9+
10+
report
11+
12+
### Application logs ###
13+
14+
logs
15+
*.log
16+
17+
### Temporary Subversion files ###
18+
19+
*.mine
20+
21+
### Backup files ###
22+
23+
*.bak
24+
~$*
25+
26+
### Windows system files ###
27+
28+
# Windows thumbnail cache files
29+
Thumbs.db
30+
ehthumbs.db
31+
ehthumbs_vista.db
32+
33+
# Folder config file
34+
Desktop.ini
35+
36+
# Recycle Bin used on file shares
37+
$RECYCLE.BIN
38+
39+
# Windows Installer files
40+
*.cab
41+
*.msi
42+
*.msm
43+
*.msp
44+
45+
# Windows shortcuts
46+
*.lnk
47+
48+
### macOS system files ###
49+
50+
*.DS_Store
51+
.AppleDouble
52+
.LSOverride
53+
54+
# Icon must end with two \r
55+
Icon
56+
57+
58+
# Companion files
59+
._*
60+
61+
# Files that might appear in the root of a volume
62+
.DocumentRevisions-V100
63+
.fseventsd
64+
.Spotlight-V100
65+
.TemporaryItems
66+
.Trashes
67+
.VolumeIcon.icns
68+
.com.apple.timemachine.donotpresent
69+
70+
# Directories potentially created on remote AFP share
71+
.AppleDB
72+
.AppleDesktop
73+
Network Trash Folder
74+
Temporary Items
75+
.apdisk
76+
77+
## Other VCS ##
78+
79+
# SVN
80+
.svn
81+
82+
## Gradle ##
83+
84+
.gradle
85+
86+
## At any level
87+
build/
88+
89+
# Ignore Gradle GUI config
90+
gradle-app.setting
91+
92+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
93+
!gradle-wrapper.jar
94+
95+
# Cache of project
96+
.gradletasknamecache
97+
98+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
99+
# gradle/wrapper/gradle-wrapper.properties
100+
101+
## JetBrains IDEs: IntelliJ IDEA, DataGrip ##
102+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
103+
# Reconciled with .ignore (https://github.com/github/gitignore) as of 4/29/2020
104+
105+
# User-specific stuff:
106+
**/.idea/**/workspace.xml
107+
**/.idea/**/tasks.xml
108+
**/.idea/**/usage.statistics.xml
109+
**/.idea/dictionaries
110+
**/.idea/**/shelf
111+
112+
# Generated files
113+
**/.idea/**/contentModel.xml
114+
115+
# Sensitive or high-churn files:
116+
**/.idea/**/dataSources/
117+
**/.idea/**/dataSources.ids
118+
# dataSources.local.xml is OK to share
119+
#.idea/**/dataSources.local.xml
120+
**/.idea/**/sqlDataSources.xml
121+
**/.idea/**/dynamic.xml
122+
**/.idea/**/uiDesigner.xml
123+
**/.idea/**/dbnavigator.xml
124+
125+
# Gradle:
126+
**/.idea/**/gradle.xml
127+
**/.idea/**/libraries
128+
129+
# Gradle and Maven with auto-import
130+
# When using Gradle or Maven with auto-import, you should exclude module files,
131+
# since they will be recreated, and may cause churn.
132+
**/.idea/artifacts
133+
**/.idea/compiler.xml
134+
**/.idea/jarRepositories.xml
135+
**/.idea/modules.xml
136+
**/.idea/*.iml
137+
**/.idea/modules
138+
**/*.iml
139+
**/*.ipr
140+
141+
# CMake
142+
**/cmake-build-*/
143+
144+
# Mongo Explorer plugin:
145+
**/.idea/**/mongoSettings.xml
146+
147+
# File-based project format:
148+
*.iws
149+
150+
# IntelliJ IDEA
151+
out/
152+
153+
### Plugin-specific files ###
154+
155+
# mpeltonen/sbt-idea plugin
156+
**/.idea_modules/
157+
158+
# JIRA plugin
159+
**/atlassian-ide-plugin.xml
160+
161+
# Cursive Clojure plugin
162+
**/.idea/replstate.xml
163+
164+
# Crashlytics plugin (for Android Studio and IntelliJ)
165+
**/com_crashlytics_export_strings.xml
166+
**/crashlytics.properties
167+
**/crashlytics-build.properties
168+
**/fabric.properties
169+
170+
# Editor-based Rest Client
171+
**/.idea/httpRequests
172+
173+
# Android studio 3.1+ serialized cache file
174+
**/.idea/caches/build_file_checksums.ser

0 commit comments

Comments
 (0)