-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
99 lines (88 loc) · 1.84 KB
/
.gitignore
File metadata and controls
99 lines (88 loc) · 1.84 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# =============================================================================
# Potions Project .gitignore
# =============================================================================
# OS & Platform Specific
# =============================================================================
.DS_Store
Thumbs.db
.AppleDouble/
.LSOverride/
.directory
# IDE & Editor Files
# =============================================================================
.vscode/
!.vscode/cspell.json
!.vscode/extensions.json
!.vscode/recipes.schema.json
!.vscode/settings.json
.idea/
*.swp
*.swo
*~
.project
.classpath
*.iml
# Security & Credentials (NEVER COMMIT)
# =============================================================================
*.key
*.pem
*.p12
*.pfx
*_rsa*
*_dsa*
*_ecdsa*
*_ed25519*
id_*
known_hosts*
authorized_keys*
.ssh/
.gnupg/
.gpg
*.asc
*.sig
.env
.env.local
.env.*.local
# Build & Compilation
# =============================================================================
# Compiled binaries (platform-specific)
*.exe
*.exe~
*.dll
*.so
*.so.*
*.dylib
# Build directories
bin/
dist/
.build-temp/
# Backup files
*.backup
*.wand-backup
# Test & Coverage
# =============================================================================
tests/temp/
test-dist/
test/
!test/*.go
coverage.*
# Release Artifacts
# =============================================================================
*.tar.gz
*.sha256
*.sbom.json
*.provenance.json
# Temporary Files & Logs
# =============================================================================
*.tmp
*.log
# Dependencies (if added)
# =============================================================================
node_modules/
vendor/
# Personal Customizations (user-specific)
# =============================================================================
shell/my_custom.zsh
shell/local_*.zsh
.zsh_history
.bash_history