Skip to content

Commit 25dd6bd

Browse files
ianhe8xIan He
authored and
Ian He
committed
Initial commit
0 parents  commit 25dd6bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+10785
-0
lines changed

.gitignore

Lines changed: 203 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
4+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
5+
6+
# User-specific stuff
7+
.idea/**/workspace.xml
8+
.idea/**/tasks.xml
9+
.idea/**/usage.statistics.xml
10+
.idea/**/dictionaries
11+
.idea/**/shelf
12+
13+
# Generated files
14+
.idea/**/contentModel.xml
15+
16+
# Sensitive or high-churn files
17+
.idea/**/dataSources/
18+
.idea/**/dataSources.ids
19+
.idea/**/dataSources.local.xml
20+
.idea/**/sqlDataSources.xml
21+
.idea/**/dynamic.xml
22+
.idea/**/uiDesigner.xml
23+
.idea/**/dbnavigator.xml
24+
25+
# Gradle
26+
.idea/**/gradle.xml
27+
.idea/**/libraries
28+
29+
# Gradle and Maven with auto-import
30+
# When using Gradle or Maven with auto-import, you should exclude module files,
31+
# since they will be recreated, and may cause churn. Uncomment if using
32+
# auto-import.
33+
# .idea/artifacts
34+
# .idea/compiler.xml
35+
# .idea/jarRepositories.xml
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+
### Node template
76+
# Logs
77+
logs
78+
*.log
79+
npm-debug.log*
80+
yarn-debug.log*
81+
yarn-error.log*
82+
lerna-debug.log*
83+
84+
# Diagnostic reports (https://nodejs.org/api/report.html)
85+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
86+
87+
# Runtime data
88+
pids
89+
*.pid
90+
*.seed
91+
*.pid.lock
92+
93+
# Directory for instrumented libs generated by jscoverage/JSCover
94+
lib-cov
95+
96+
# Coverage directory used by tools like istanbul
97+
coverage
98+
*.lcov
99+
100+
# nyc test coverage
101+
.nyc_output
102+
103+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
104+
.grunt
105+
106+
# Bower dependency directory (https://bower.io/)
107+
bower_components
108+
109+
# node-waf configuration
110+
.lock-wscript
111+
112+
# Compiled binary addons (https://nodejs.org/api/addons.html)
113+
build/Release
114+
115+
# Dependency directories
116+
node_modules/
117+
jspm_packages/
118+
119+
# Snowpack dependency directory (https://snowpack.dev/)
120+
web_modules/
121+
122+
# TypeScript cache
123+
*.tsbuildinfo
124+
125+
# Optional npm cache directory
126+
.npm
127+
128+
# Optional eslint cache
129+
.eslintcache
130+
131+
# Microbundle cache
132+
.rpt2_cache/
133+
.rts2_cache_cjs/
134+
.rts2_cache_es/
135+
.rts2_cache_umd/
136+
137+
# Optional REPL history
138+
.node_repl_history
139+
140+
# Output of 'npm pack'
141+
*.tgz
142+
143+
# Yarn Integrity file
144+
.yarn-integrity
145+
146+
# dotenv environment variables file
147+
.env
148+
.env.test
149+
150+
# parcel-bundler cache (https://parceljs.org/)
151+
.cache
152+
.parcel-cache
153+
154+
# Next.js build output
155+
.next
156+
out
157+
158+
# Nuxt.js build / generate output
159+
.nuxt
160+
dist
161+
162+
# Gatsby files
163+
.cache/
164+
# Comment in the public line in if your project uses Gatsby and not Next.js
165+
# https://nextjs.org/blog/next-9-1#public-directory-support
166+
# public
167+
168+
# vuepress build output
169+
.vuepress/dist
170+
171+
# Serverless directories
172+
.serverless/
173+
174+
# FuseBox cache
175+
.fusebox/
176+
177+
# DynamoDB Local files
178+
.dynamodb/
179+
180+
# TernJS port file
181+
.tern-port
182+
183+
# Stores VSCode versions used for testing VSCode extensions
184+
.vscode-test
185+
186+
# yarn v2
187+
.yarn/cache
188+
.yarn/unplugged
189+
.yarn/build-state.yml
190+
.yarn/install-state.gz
191+
.pnp.*
192+
193+
### VisualStudioCode template
194+
.vscode/*
195+
!.vscode/settings.json
196+
!.vscode/tasks.json
197+
!.vscode/launch.json
198+
!.vscode/extensions.json
199+
*.code-workspace
200+
201+
# Local History for Visual Studio Code
202+
.history/
203+

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 38 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/plugins/@yarnpkg/plugin-typescript.cjs

Lines changed: 8 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/plugins/@yarnpkg/plugin-version.cjs

Lines changed: 52 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

Lines changed: 29 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-berry.js

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.yarnrc.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
enableImmutableInstalls: false
2+
3+
enableProgressBars: false
4+
5+
nodeLinker: node-modules
6+
7+
plugins:
8+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
9+
spec: "@yarnpkg/plugin-interactive-tools"
10+
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
11+
spec: "@yarnpkg/plugin-version"
12+
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
13+
spec: "@yarnpkg/plugin-workspace-tools"
14+
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
15+
spec: "@yarnpkg/plugin-typescript"
16+
17+
yarnPath: .yarn/releases/yarn-berry.js

0 commit comments

Comments
 (0)