-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.cursorignore
More file actions
61 lines (50 loc) · 970 Bytes
/
.cursorignore
File metadata and controls
61 lines (50 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Cloudflare environment files
.dev.vars
.prod.vars
# Global environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Dependencies and build cache
node_modules/
.turbo/
# Generated TypeScript files
# Auto-generated by Wrangler from wrangler.jsonc - regenerated and shouldn't be analyzed
**/worker-configuration.d.ts
# Database migrations
# Drizzle migration SQL files and JSON snapshots - generated artifacts
**/drizzle/migrations/**
# Build outputs and cache
**/.wrangler/
**/dist/
**/build/
**/*.tsbuildinfo
# Lock files
# Very large dependency lock files (thousands of lines) - don't need code analysis
pnpm-lock.yaml
package-lock.json
yarn.lock
# Test coverage
**/coverage/
**/.nyc_output/
# Log files
*.log
npm-debug.log*
yarn-debug.log*
pnpm-debug.log*
# OS and editor files
.DS_Store
Thumbs.db
*.swp
*.swo
*~
.vscode/
# Documentation build outputs
**/docs/build/
**/.next/
# Temporary files
*.tmp
*.temp
.cache/