Skip to content

Commit b449da0

Browse files
committed
Initial project files
0 parents  commit b449da0

Some content is hidden

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

46 files changed

+15021
-0
lines changed

.eslintrc.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"root": true,
3+
"env": { "browser": true, "es2020": true },
4+
"extends": [
5+
"eslint:recommended",
6+
"@typescript-eslint/recommended",
7+
"plugin:react-hooks/recommended",
8+
"@typescript-eslint/recommended-requiring-type-checking"
9+
],
10+
"ignorePatterns": ["dist", ".eslintrc.cjs"],
11+
"parser": "@typescript-eslint/parser",
12+
"plugins": ["react-refresh"],
13+
"rules": {
14+
"react-refresh/only-export-components": [
15+
"warn",
16+
{ "allowConstantExport": true }
17+
]
18+
}
19+
}

.gitignore

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# Dependencies
2+
node_modules/
3+
*.pnp
4+
.pnp.js
5+
.yarn/cache
6+
.yarn/unplugged
7+
.yarn/build-state.yml
8+
.yarn/install-state.gz
9+
10+
# Production builds
11+
dist/
12+
build/
13+
out/
14+
15+
# Development
16+
.vite/
17+
*.local
18+
19+
# Environment variables
20+
.env
21+
.env.local
22+
.env.development.local
23+
.env.test.local
24+
.env.production.local
25+
26+
# Logs
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*
30+
lerna-debug.log*
31+
.pnpm-debug.log*
32+
33+
# Runtime data
34+
pids
35+
*.pid
36+
*.seed
37+
*.pid.lock
38+
39+
# Coverage directory used by tools like istanbul
40+
coverage/
41+
*.lcov
42+
43+
# TypeScript
44+
*.tsbuildinfo
45+
.tscache/
46+
47+
# Optional npm cache directory
48+
.npm
49+
50+
# Optional eslint cache
51+
.eslintcache
52+
53+
# Optional stylelint cache
54+
.stylelintcache
55+
56+
# Microbundle cache
57+
.rpt2_cache/
58+
.rts2_cache_cjs/
59+
.rts2_cache_es/
60+
.rts2_cache_umd/
61+
62+
# Optional REPL history
63+
.node_repl_history
64+
65+
# Output of 'npm pack'
66+
*.tgz
67+
68+
# Yarn Integrity file
69+
.yarn-integrity
70+
71+
# parcel-bundler cache (https://parceljs.org/)
72+
.cache
73+
.parcel-cache
74+
75+
# Next.js build output
76+
.next
77+
78+
# Nuxt.js build / generate output
79+
.nuxt
80+
81+
# Storybook build outputs
82+
.out
83+
.storybook-out
84+
storybook-static
85+
86+
# Temporary folders
87+
tmp/
88+
temp/
89+
90+
# Editor directories and files
91+
.vscode/
92+
.idea/
93+
*.swp
94+
*.swo
95+
*~
96+
97+
# OS generated files
98+
.DS_Store
99+
.DS_Store?
100+
._*
101+
.Spotlight-V100
102+
.Trashes
103+
ehthumbs.db
104+
Thumbs.db
105+
106+
# Windows
107+
*.stackdump
108+
109+
# NPM
110+
package-lock.json.bak

0 commit comments

Comments
 (0)