forked from QuorumProof/QuorumProof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (47 loc) · 679 Bytes
/
Copy path.gitignore
File metadata and controls
57 lines (47 loc) · 679 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
# Build artifacts
target/
*.wasm
*.d
# Node
node_modules/
frontend/node_modules/
dashboard/node_modules/
api-server/node_modules/
# Lock files (generated)
frontend/package-lock.json
frontend/pnpm-lock.yaml
api-server/package-lock.json
# Coverage
coverage/
frontend/coverage/
dashboard/coverage/
api-server/coverage/
*.lcov
.nyc_output/
lcov.info
# Test snapshots
**/test_snapshots/
**/*.snap
# Backup files
*.bak
*.bak.*
# IDE / OS
.DS_Store
*.swp
*.swo
.vscode/settings.json
.idea/
# Misc
.env
dist/
dashboard/dist/
frontend/dist/
# Rust / Cargo
Cargo.lock.bak
**/*.rs.bak
# Fuzz artifacts
fuzz/corpus/
fuzz/artifacts/
# Mutation testing
mutants.out/
mutants.out.old/