-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
61 lines (49 loc) · 984 Bytes
/
.gitignore
File metadata and controls
61 lines (49 loc) · 984 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
53
54
55
56
57
58
59
60
61
# Rust build artifacts
/target
/xtask/target
**/*.rs.bk
*.pdb
# IDE and editor files
.vscode/
.idea/
.fleet/
.helix/
*.swp
*.swo
*~
.sisyphus/
# macOS
.DS_Store
# Windows
Thumbs.db
desktop.ini
# cargo-dist
dist/
# Code coverage
*.profraw
*.profdata
# Build artifacts
*.exe
# Development artifacts
*.log
.provenant/
.provenant/**
# SQLite WAL journal files (created when tests open .sqlite fixtures)
*.sqlite-shm
*.sqlite-wal
# Environment files
.env
.env.*
!.env.example
node_modules/
# Test fixtures should always be reviewable and trackable, even when they use
# names like dist/, node_modules/, *.log, or *.exe.
!testdata/
!testdata/**
# Keep transient SQLite journal files created while exercising test fixtures ignored.
testdata/**/*.sqlite-shm
testdata/**/*.sqlite-wal
# Local scan cache artifacts should never be tracked anywhere in the repo.
# Keep this after the testdata re-include so fixture-local caches stay ignored too.
.provenant-cache/
.provenant-cache/**