Skip to content

Commit 5049fd8

Browse files
committed
hello world
1 parent 2251efa commit 5049fd8

File tree

1 file changed

+212
-0
lines changed

1 file changed

+212
-0
lines changed

.gitignore

+212
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,212 @@
1+
2+
# Created by https://www.gitignore.io/api/node,react,webstorm
3+
# Edit at https://www.gitignore.io/?templates=node,react,webstorm
4+
5+
### Node ###
6+
# Logs
7+
logs
8+
*.log
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
lerna-debug.log*
13+
14+
# Diagnostic reports (https://nodejs.org/api/report.html)
15+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
16+
17+
# Runtime data
18+
pids
19+
*.pid
20+
*.seed
21+
*.pid.lock
22+
23+
# Directory for instrumented libs generated by jscoverage/JSCover
24+
lib-cov
25+
26+
# Coverage directory used by tools like istanbul
27+
coverage
28+
*.lcov
29+
30+
# nyc test coverage
31+
.nyc_output
32+
33+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34+
.grunt
35+
36+
# Bower dependency directory (https://bower.io/)
37+
bower_components
38+
39+
# node-waf configuration
40+
.lock-wscript
41+
42+
# Compiled binary addons (https://nodejs.org/api/addons.html)
43+
build/Release
44+
45+
# Dependency directories
46+
node_modules/
47+
jspm_packages/
48+
49+
# TypeScript v1 declaration files
50+
typings/
51+
52+
# TypeScript cache
53+
*.tsbuildinfo
54+
55+
# Optional npm cache directory
56+
.npm
57+
58+
# Optional eslint cache
59+
.eslintcache
60+
61+
# Optional REPL history
62+
.node_repl_history
63+
64+
# Output of 'npm pack'
65+
*.tgz
66+
67+
# Yarn Integrity file
68+
.yarn-integrity
69+
70+
# dotenv environment variables file
71+
.env
72+
.env.test
73+
74+
# parcel-bundler cache (https://parceljs.org/)
75+
.cache
76+
77+
# next.js build output
78+
.next
79+
80+
# nuxt.js build output
81+
.nuxt
82+
83+
# rollup.js default build output
84+
dist/
85+
86+
# Uncomment the public line if your project uses Gatsby
87+
# https://nextjs.org/blog/next-9-1#public-directory-support
88+
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
89+
# public
90+
91+
# Storybook build outputs
92+
.out
93+
.storybook-out
94+
95+
# vuepress build output
96+
.vuepress/dist
97+
98+
# Serverless directories
99+
.serverless/
100+
101+
# FuseBox cache
102+
.fusebox/
103+
104+
# DynamoDB Local files
105+
.dynamodb/
106+
107+
# Temporary folders
108+
tmp/
109+
temp/
110+
111+
### react ###
112+
.DS_*
113+
**/*.backup.*
114+
**/*.back.*
115+
116+
node_modules
117+
118+
*.sublime*
119+
120+
psd
121+
thumb
122+
sketch
123+
124+
### WebStorm ###
125+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
126+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
127+
128+
# User-specific stuff
129+
.idea/**/workspace.xml
130+
.idea/**/tasks.xml
131+
.idea/**/usage.statistics.xml
132+
.idea/**/dictionaries
133+
.idea/**/shelf
134+
135+
# Generated files
136+
.idea/**/contentModel.xml
137+
138+
# Sensitive or high-churn files
139+
.idea/**/dataSources/
140+
.idea/**/dataSources.ids
141+
.idea/**/dataSources.local.xml
142+
.idea/**/sqlDataSources.xml
143+
.idea/**/dynamic.xml
144+
.idea/**/uiDesigner.xml
145+
.idea/**/dbnavigator.xml
146+
147+
# Gradle
148+
.idea/**/gradle.xml
149+
.idea/**/libraries
150+
151+
# Gradle and Maven with auto-import
152+
# When using Gradle or Maven with auto-import, you should exclude module files,
153+
# since they will be recreated, and may cause churn. Uncomment if using
154+
# auto-import.
155+
# .idea/modules.xml
156+
# .idea/*.iml
157+
# .idea/modules
158+
# *.iml
159+
# *.ipr
160+
161+
# CMake
162+
cmake-build-*/
163+
164+
# Mongo Explorer plugin
165+
.idea/**/mongoSettings.xml
166+
167+
# File-based project format
168+
*.iws
169+
170+
# IntelliJ
171+
out/
172+
173+
# mpeltonen/sbt-idea plugin
174+
.idea_modules/
175+
176+
# JIRA plugin
177+
atlassian-ide-plugin.xml
178+
179+
# Cursive Clojure plugin
180+
.idea/replstate.xml
181+
182+
# Crashlytics plugin (for Android Studio and IntelliJ)
183+
com_crashlytics_export_strings.xml
184+
crashlytics.properties
185+
crashlytics-build.properties
186+
fabric.properties
187+
188+
# Editor-based Rest Client
189+
.idea/httpRequests
190+
191+
# Android studio 3.1+ serialized cache file
192+
.idea/caches/build_file_checksums.ser
193+
194+
### WebStorm Patch ###
195+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
196+
197+
# *.iml
198+
# modules.xml
199+
# .idea/misc.xml
200+
# *.ipr
201+
202+
# Sonarlint plugin
203+
.idea/**/sonarlint/
204+
205+
# SonarQube Plugin
206+
.idea/**/sonarIssues.xml
207+
208+
# Markdown Navigator plugin
209+
.idea/**/markdown-navigator.xml
210+
.idea/**/markdown-navigator/
211+
212+
# End of https://www.gitignore.io/api/node,react,webstorm

0 commit comments

Comments
 (0)