-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.gitignore
More file actions
44 lines (36 loc) · 2.22 KB
/
.gitignore
File metadata and controls
44 lines (36 loc) · 2.22 KB
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
# ── Build artifacts ────────────────────────────────────────────────────────────
/target/
**/*.rs.bk
# ── Cargo ──────────────────────────────────────────────────────────────────────
# Keep Cargo.lock for binary crates (recommended by Cargo docs)
# Cargo.lock
# ── IDE / Editor ───────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
desktop.ini
# ── OS ─────────────────────────────────────────────────────────────────────────
.DS_Store
.Spotlight-V100
.Trashes
ehthumbs.db
# ── Debug ──────────────────────────────────────────────────────────────────────
*.pdb
*.dSYM/
# ── Environment ───────────────────────────────────────────────────────────────
.env
.env.local
# ── Node / TypeScript ─────────────────────────────────────────────────────────
node_modules/
sdk/typescript/dist/
# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
*.egg-info/
dist/
build/
# ── Claude / AI ────────────────────────────────────────────────────────────────
.claude/