-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
60 lines (46 loc) · 857 Bytes
/
.gitignore
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
# Use case specific ignores
repo/
data/
qwdata/
redis-data/
ai-config.yaml
# Editor and IDE artifacts
.idea/
*.swp
*.swo
.DS_Store
# Compiled files
**/target/
# Build scripts generated files
**/out/
# Dependency directories (commented out by default, uncomment if needed)
# **/vendor/
# Error logs
*.log
# FFI generates bindings
**/bindings/
# Environment configuration files (uncomment if you use them)
# .env
# .env.local
# Package-specific Cargo.lock files for packages configured as binaries
# Uncomment if you have binary packages within your workspace
# **/Cargo.lock
# Coverage data generated by tools like `cargo tarpaulin`
coverage/
**/coverage/
cov/
**/cov/
*.cov
*.gcda
*.gcno
# Benchmarking artifacts
**/target/criterion/
**/benches/
# Save and temporary files
*~
**/*~
.*.swp
.*.swo
# SQLite DB files
*.sqlite
# End of .gitignore