Skip to content

Commit 7c6fb46

Browse files
committed
Start 🚀
0 parents  commit 7c6fb46

File tree

263 files changed

+14950
-0
lines changed

Some content is hidden

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

263 files changed

+14950
-0
lines changed

.gitignore

Lines changed: 236 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,236 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,node,nuxtjs,windows
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,macos,node,nuxtjs,windows
4+
5+
### macOS ###
6+
# General
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
11+
# Icon must end with two \r
12+
Icon
13+
14+
# Thumbnails
15+
._*
16+
17+
# Files that might appear in the root of a volume
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.com.apple.timemachine.donotpresent
25+
26+
# Directories potentially created on remote AFP share
27+
.AppleDB
28+
.AppleDesktop
29+
Network Trash Folder
30+
Temporary Items
31+
.apdisk
32+
33+
### macOS Patch ###
34+
# iCloud generated files
35+
*.icloud
36+
37+
### Node ###
38+
# Logs
39+
logs
40+
*.log
41+
npm-debug.log*
42+
yarn-debug.log*
43+
yarn-error.log*
44+
lerna-debug.log*
45+
.pnpm-debug.log*
46+
47+
# Diagnostic reports (https://nodejs.org/api/report.html)
48+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
49+
50+
# Runtime data
51+
pids
52+
*.pid
53+
*.seed
54+
*.pid.lock
55+
56+
# Directory for instrumented libs generated by jscoverage/JSCover
57+
lib-cov
58+
59+
# Coverage directory used by tools like istanbul
60+
coverage
61+
*.lcov
62+
63+
# nyc test coverage
64+
.nyc_output
65+
66+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
67+
.grunt
68+
69+
# Bower dependency directory (https://bower.io/)
70+
bower_components
71+
72+
# node-waf configuration
73+
.lock-wscript
74+
75+
# Compiled binary addons (https://nodejs.org/api/addons.html)
76+
build/Release
77+
78+
# Dependency directories
79+
node_modules/
80+
jspm_packages/
81+
82+
# Snowpack dependency directory (https://snowpack.dev/)
83+
web_modules/
84+
85+
# TypeScript cache
86+
*.tsbuildinfo
87+
88+
# Optional npm cache directory
89+
.npm
90+
91+
# Optional eslint cache
92+
.eslintcache
93+
94+
# Optional stylelint cache
95+
.stylelintcache
96+
97+
# Microbundle cache
98+
.rpt2_cache/
99+
.rts2_cache_cjs/
100+
.rts2_cache_es/
101+
.rts2_cache_umd/
102+
103+
# Optional REPL history
104+
.node_repl_history
105+
106+
# Output of 'npm pack'
107+
*.tgz
108+
109+
# Yarn Integrity file
110+
.yarn-integrity
111+
112+
# dotenv environment variable files
113+
.env
114+
.env.development.local
115+
.env.test.local
116+
.env.production.local
117+
.env.local
118+
119+
# parcel-bundler cache (https://parceljs.org/)
120+
.cache
121+
.parcel-cache
122+
123+
# Next.js build output
124+
.next
125+
out
126+
127+
# Nuxt.js build / generate output
128+
.nuxt
129+
dist
130+
131+
# Gatsby files
132+
.cache/
133+
# Comment in the public line in if your project uses Gatsby and not Next.js
134+
# https://nextjs.org/blog/next-9-1#public-directory-support
135+
# public
136+
137+
# vuepress build output
138+
.vuepress/dist
139+
140+
# vuepress v2.x temp and cache directory
141+
.temp
142+
143+
# Docusaurus cache and generated files
144+
.docusaurus
145+
146+
# Serverless directories
147+
.serverless/
148+
149+
# FuseBox cache
150+
.fusebox/
151+
152+
# DynamoDB Local files
153+
.dynamodb/
154+
155+
# TernJS port file
156+
.tern-port
157+
158+
# Stores VSCode versions used for testing VSCode extensions
159+
.vscode-test
160+
161+
# yarn v2
162+
.yarn/cache
163+
.yarn/unplugged
164+
.yarn/build-state.yml
165+
.yarn/install-state.gz
166+
.pnp.*
167+
168+
### Node Patch ###
169+
# Serverless Webpack directories
170+
.webpack/
171+
172+
# Optional stylelint cache
173+
174+
# SvelteKit build / generate output
175+
.svelte-kit
176+
177+
### NuxtJS ###
178+
# Generated dirs
179+
.nuxt-*
180+
.output
181+
.gen
182+
183+
# Node dependencies
184+
node_modules
185+
186+
# System files
187+
188+
### VisualStudioCode ###
189+
.vscode/*
190+
!.vscode/settings.json
191+
!.vscode/tasks.json
192+
!.vscode/launch.json
193+
!.vscode/extensions.json
194+
!.vscode/*.code-snippets
195+
196+
# Local History for Visual Studio Code
197+
.history/
198+
199+
# Built Visual Studio Code Extensions
200+
*.vsix
201+
202+
### VisualStudioCode Patch ###
203+
# Ignore all local history of files
204+
.history
205+
.ionide
206+
207+
### Windows ###
208+
# Windows thumbnail cache files
209+
Thumbs.db
210+
Thumbs.db:encryptable
211+
ehthumbs.db
212+
ehthumbs_vista.db
213+
214+
# Dump file
215+
*.stackdump
216+
217+
# Folder config file
218+
[Dd]esktop.ini
219+
220+
# Recycle Bin used on file shares
221+
$RECYCLE.BIN/
222+
223+
# Windows Installer files
224+
*.cab
225+
*.msi
226+
*.msix
227+
*.msm
228+
*.msp
229+
230+
# Windows shortcuts
231+
*.lnk
232+
233+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,node,nuxtjs,windows
234+
235+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
236+

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
shamefully-hoist=true
2+
strict-peer-dependencies=false

0 commit comments

Comments
 (0)