Showing
1 changed file
with
258 additions
and
0 deletions
.gitignore
0 → 100644
1 | +# Created by https://www.gitignore.io/api/node,macos,windows,intellij | ||
2 | +# Edit at https://www.gitignore.io/?templates=node,macos,windows,intellij | ||
3 | + | ||
4 | +### Intellij ### | ||
5 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm | ||
6 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | ||
7 | + | ||
8 | +# User-specific stuff | ||
9 | +.idea | ||
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 Patch ### | ||
76 | +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 | ||
77 | + | ||
78 | +# *.iml | ||
79 | +# modules.xml | ||
80 | +# .idea/misc.xml | ||
81 | +# *.ipr | ||
82 | + | ||
83 | +# Sonarlint plugin | ||
84 | +.idea/**/sonarlint/ | ||
85 | + | ||
86 | +# SonarQube Plugin | ||
87 | +.idea/**/sonarIssues.xml | ||
88 | + | ||
89 | +# Markdown Navigator plugin | ||
90 | +.idea/**/markdown-navigator.xml | ||
91 | +.idea/**/markdown-navigator/ | ||
92 | + | ||
93 | +### macOS ### | ||
94 | +# General | ||
95 | +.DS_Store | ||
96 | +.AppleDouble | ||
97 | +.LSOverride | ||
98 | + | ||
99 | +# Icon must end with two \r | ||
100 | +Icon | ||
101 | + | ||
102 | +# Thumbnails | ||
103 | +._* | ||
104 | + | ||
105 | +# Files that might appear in the root of a volume | ||
106 | +.DocumentRevisions-V100 | ||
107 | +.fseventsd | ||
108 | +.Spotlight-V100 | ||
109 | +.TemporaryItems | ||
110 | +.Trashes | ||
111 | +.VolumeIcon.icns | ||
112 | +.com.apple.timemachine.donotpresent | ||
113 | + | ||
114 | +# Directories potentially created on remote AFP share | ||
115 | +.AppleDB | ||
116 | +.AppleDesktop | ||
117 | +Network Trash Folder | ||
118 | +Temporary Items | ||
119 | +.apdisk | ||
120 | + | ||
121 | +### Node ### | ||
122 | +# Logs | ||
123 | +logs | ||
124 | +*.log | ||
125 | +npm-debug.log* | ||
126 | +yarn-debug.log* | ||
127 | +yarn-error.log* | ||
128 | +lerna-debug.log* | ||
129 | + | ||
130 | +# Diagnostic reports (https://nodejs.org/api/report.html) | ||
131 | +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||
132 | + | ||
133 | +# Runtime data | ||
134 | +pids | ||
135 | +*.pid | ||
136 | +*.seed | ||
137 | +*.pid.lock | ||
138 | + | ||
139 | +# Directory for instrumented libs generated by jscoverage/JSCover | ||
140 | +lib-cov | ||
141 | + | ||
142 | +# Coverage directory used by tools like istanbul | ||
143 | +coverage | ||
144 | +*.lcov | ||
145 | + | ||
146 | +# nyc test coverage | ||
147 | +.nyc_output | ||
148 | + | ||
149 | +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | ||
150 | +.grunt | ||
151 | + | ||
152 | +# Bower dependency directory (https://bower.io/) | ||
153 | +bower_components | ||
154 | + | ||
155 | +# node-waf configuration | ||
156 | +.lock-wscript | ||
157 | + | ||
158 | +# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
159 | +build/Release | ||
160 | + | ||
161 | +# Dependency directories | ||
162 | +node_modules/ | ||
163 | +jspm_packages/ | ||
164 | + | ||
165 | +# TypeScript v1 declaration files | ||
166 | +typings/ | ||
167 | + | ||
168 | +# TypeScript cache | ||
169 | +*.tsbuildinfo | ||
170 | + | ||
171 | +# Optional npm cache directory | ||
172 | +.npm | ||
173 | + | ||
174 | +# Optional eslint cache | ||
175 | +.eslintcache | ||
176 | + | ||
177 | +# Optional REPL history | ||
178 | +.node_repl_history | ||
179 | + | ||
180 | +# Output of 'npm pack' | ||
181 | +*.tgz | ||
182 | + | ||
183 | +# Yarn Integrity file | ||
184 | +.yarn-integrity | ||
185 | + | ||
186 | +# dotenv environment variables file | ||
187 | +.env | ||
188 | +.env.test | ||
189 | + | ||
190 | +# parcel-bundler cache (https://parceljs.org/) | ||
191 | +.cache | ||
192 | + | ||
193 | +# next.js build output | ||
194 | +.next | ||
195 | + | ||
196 | +# nuxt.js build output | ||
197 | +.nuxt | ||
198 | + | ||
199 | +# rollup.js default build output | ||
200 | +dist/ | ||
201 | + | ||
202 | +# Uncomment the public line if your project uses Gatsby | ||
203 | +# https://nextjs.org/blog/next-9-1#public-directory-support | ||
204 | +# https://create-react-app.dev/docs/using-the-public-folder/#docsNav | ||
205 | +# public | ||
206 | + | ||
207 | +# Storybook build outputs | ||
208 | +.out | ||
209 | +.storybook-out | ||
210 | + | ||
211 | +# vuepress build output | ||
212 | +.vuepress/dist | ||
213 | + | ||
214 | +# Serverless directories | ||
215 | +.serverless/ | ||
216 | + | ||
217 | +# FuseBox cache | ||
218 | +.fusebox/ | ||
219 | + | ||
220 | +# DynamoDB Local files | ||
221 | +.dynamodb/ | ||
222 | + | ||
223 | +# Temporary folders | ||
224 | +tmp/ | ||
225 | +temp/ | ||
226 | + | ||
227 | +### Windows ### | ||
228 | +# Windows thumbnail cache files | ||
229 | +Thumbs.db | ||
230 | +Thumbs.db:encryptable | ||
231 | +ehthumbs.db | ||
232 | +ehthumbs_vista.db | ||
233 | + | ||
234 | +# Dump file | ||
235 | +*.stackdump | ||
236 | + | ||
237 | +# Folder config file | ||
238 | +[Dd]esktop.ini | ||
239 | + | ||
240 | +# Recycle Bin used on file shares | ||
241 | +$RECYCLE.BIN/ | ||
242 | + | ||
243 | +# Windows Installer files | ||
244 | +*.cab | ||
245 | +*.msi | ||
246 | +*.msix | ||
247 | +*.msm | ||
248 | +*.msp | ||
249 | + | ||
250 | +# Windows shortcuts | ||
251 | +*.lnk | ||
252 | + | ||
253 | +# build | ||
254 | +dist/ | ||
255 | +zip/ | ||
256 | +public/ | ||
257 | + | ||
258 | +# End of https://www.gitignore.io/api/node,macos,windows,intellij |
-
Please register or login to post a comment