-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
52 lines (35 loc) · 1018 Bytes
/
.gitignore
File metadata and controls
52 lines (35 loc) · 1018 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
# Ignore node_modules directory
node_modules/
# Ignore .clasp.json file
.clasp.json
# Ignore all files ending with ~ (temporary files)
*~
# Ignore all files ending with .swp (swap files)
*.swp
# Ignore all files ending with .log (log files)
*.log
# Ignore all files ending with .tmp (temporary files)
*.tmp
# Ignore all files ending with .bak (backup files)
*.bak
# Ignore all files ending with .DS_Store (macOS metadata files)
.DS_Store
# Ignore all files ending with Thumbs.db (Windows thumbnail cache files)
Thumbs.db
# Ignore all folders ending with "- Copy"
*- Copy/
# Historical archive — not active code
2023-10/
# Ignore all folders ending with "- Copy" (case insensitive)
*- copy/
.README-DEV.md
# Generated beads report (never commit)
bdreport.md
# Beads / Dolt files (added by bd init)
.dolt/
*.db
.beads-credential-key
# Claude Code local settings (machine-specific permissions)
.claude/settings.local.json
# python caches
__pycache__