-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
173 lines (155 loc) · 2.39 KB
/
Copy path.gitignore
File metadata and controls
173 lines (155 loc) · 2.39 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# --------------------
# Global/OS Specific
# --------------------
.DS_Store
.Trashes
._*
.history
Thumbs.db
*.tmp
*.bak
*.orig
# Editors
*.swp
*.swo
*~
#*#
.claude
# --------------------
# Python Specific
# --------------------
__pycache__/
*.py[cod]
*$py.class
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python/
*.egg-info/
.installed.cfg
*.manifest
.pytest_cache/
.tox/
.coverage
.coverage.*
htmlcov/
.venv
venv/
env/
.ipynb_checkpoints
.mypy_cache/
*.spec
# --------------------
# Node/JS Specific
# --------------------
node_modules/
.pnpm-store/
/jspm_packages/
/dist/
/out/
/build/
/tmp/
/temp/
.next/
.gatsby/
/public/
/.wrangler/
/worker/
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
coverage/
.nyc_output/
/test-results/
*.tsbuildinfo
.vite/
# --------------------
# Rust Specific
# --------------------
# Standard Cargo build directory
/target/
# WASM output directory (from wasm-pack)
/pkg/
# Rust-analyzer metadata/cache
.rust-analyzer/
# Generated dependency lock file (usually tracked, but sometimes ignored in small snippets)
# Keeping the existing line, but note that Cargo.lock is typically committed in applications.
Cargo.lock
# Build artifacts and temporary files
*.rs.bk
**/*.rs.bk
*.d
*.gcno
*.gcda
*.gcov
# Dependency download cache (if configured to download locally)
/dl/
# Crates generated by cargo-bench-summary
bench_summary/
# Documentation generated by cargo doc
doc/
# Code coverage output
cov/
*.profdata
.cargo-bench-summary.json
.coverage
# Temporary files from tools like IntelliJ/CLion Rust plugin
intellij-rust/
*.iml
# IDE/Tool specific files for `rust-analyzer` (often redundant with .rust-analyzer/)
.lsp
# Test results and temporary files
test/
test-results/
# Executable/Library files (usually inside target/ but good for redundancy)
*.exe
*.dll
*.so
*.dylib
*.rlib
# --------------------
# Environment & Secrets
# --------------------
.env
.env.local
.env.*.local
.dev.vars
.env.production
.env.development
.env.test
*.pem
*.key
*.crt
*.p12
# --------------------
# IDE Specific (JetBrains/VS Code/Sublime)
# --------------------
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.idea/
*.iws
*.iml
*.ipr
*.sublime-project
*.sublime-workspace
# --------------------
# Model Caches
# --------------------
.fastembed_cache/
*/.fastembed_cache/