Skip to content

Commit 222c32c

Browse files
authored
Merge branch 'main' into dev
2 parents 2ba7e2d + 0937bfb commit 222c32c

9 files changed

Lines changed: 3518 additions & 77 deletions

File tree

.cursorignore

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,76 @@
11
!.github/workflows/
2+
3+
# Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv)
4+
5+
# Ignore all files in the node_modules directory
6+
node_modules/
7+
8+
# Ignore all files in the dist directory
9+
dist/
10+
11+
# Ignore all files in the build directory
12+
build/
13+
14+
# Ignore all files in the .git directory
15+
.git/
16+
17+
# Ignore all files in the .idea directory
18+
.idea/
19+
20+
# Ignore all files in the .vscode directory
21+
.vscode/
22+
23+
# Ignore all files in the .cursorignore directory
24+
.cursorignore/
25+
26+
# Ignore all files in the .serverless directory
27+
.serverless/
28+
29+
# Ignore all files in the .husky directory
30+
.husky/
31+
32+
# Ignore all files in the .next directory (Next.js)
33+
.next/
34+
35+
# Ignore mocks directory
36+
__mocks__/
37+
38+
# Large files
39+
*.log
40+
yarn-error.log
41+
yarn.lock
42+
package-lock.json
43+
44+
# Additional common directories to ignore
45+
coverage/
46+
.cache/
47+
.esbuild/
48+
out/
49+
50+
# Typescript
51+
*.tsbuildinfo
52+
53+
# Blockchain/Solidity specific
54+
chain/out/
55+
chain/cache/
56+
chain/artifacts/
57+
chain/forge-cache/
58+
deployments/
59+
60+
# OCF schemas (if they're large)
61+
ocf/build/
62+
63+
# GitHub workflows
64+
.github/
65+
66+
# Generated files
67+
*.gen.ts
68+
*.gen.js
69+
70+
# Database files or temporary data
71+
*.db
72+
data/
73+
tmp/
74+
75+
# Test files that might be large
76+
__snapshots__/

0 commit comments

Comments
 (0)