Skip to content

Commit 1dceb43

Browse files
committedNov 21, 2024
chore: initial project setup
1 parent b67b9f9 commit 1dceb43

17 files changed

+16584
-0
lines changed
 

‎.gitignore

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Dependencies
2+
/node_modules
3+
/.pnp
4+
.pnp.js
5+
6+
# Production build
7+
/build
8+
9+
# Cache and logs
10+
.cache
11+
.eslintcache
12+
.parcel-cache
13+
.next
14+
.vscode/*
15+
npm-debug.log*
16+
yarn-debug.log*
17+
yarn-error.log*
18+
19+
# Testing
20+
/coverage
21+
22+
# Environment variables
23+
.env
24+
.env.local
25+
.env.development.local
26+
.env.test.local
27+
.env.production.local
28+
29+
# Editor and OS files
30+
.DS_Store
31+
Thumbs.db
32+
33+
# Miscellaneous
34+
*.log
35+
*.lock
36+
*.bak
37+
.idea/
38+
.vscode/
39+
*.swp
40+
*.swo
41+
42+
# Husky hooks
43+
.husky/_
44+
45+
# Lint-staged and Prettier cache
46+
lint-staged.config.js
47+
.prettierignore
48+
.prettierrc*

0 commit comments

Comments
 (0)