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
128 lines (105 loc) · 2.01 KB
/
Copy path.gitignore
File metadata and controls
128 lines (105 loc) · 2.01 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
# 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
.c8/
# Test snapshots and fixtures generated at runtime
**/test_snapshots/
**/__snapshots__/
**/*.snap
**/proptest-regressions/
# API contract snapshots are committed as a regression baseline (see
# api-server/tests/snapshots.test.ts)
!api-server/tests/__snapshots__/
!api-server/tests/__snapshots__/*.snap
# Backup files
*.bak
*.bak.*
**/*.rs.bak
# Proptest regression files
**/proptest-regressions/
# Benchmark history / artifacts
benches/history/*.json
benches/history/*.csv
# Profiling artifacts
*.profdata
*.profraw
perf.data
perf.data.old
# Editor temp / generated
*.orig
*.tmp
.direnv/
.envrc
# Python bytecode (scripts)
**/__pycache__/
**/*.pyc
**/*.pyo
# Log files
*.log
logs/
# Runtime / local data stores
api-server/.data/
.data/
# IDE / OS
.DS_Store
*.swp
*.swo
.vscode/settings.json
.idea/
*.iml
Thumbs.db
# Misc
.env
dist/
dashboard/dist/
frontend/dist/
api-server/dist/
# Generated TypeScript API client (issue #1309) — regenerate with
# `npm --prefix api-server run generate:client`. The OpenAPI spec it's
# generated from (api-server/openapi/openapi.json) IS committed.
api-server/generated/
# Durable runtime state (GDPR request store, crypto-shredding vault)
.data/
api-server/.data/
# Hardhat build/fork cache (bridge integration test fixture)
api-server/cache/
api-server/artifacts/
# Rust / Cargo
Cargo.lock.bak
# Fuzz artifacts
fuzz/corpus/
fuzz/artifacts/
# Mutation testing
mutants.out/
mutants.out.old/
# Profiling and benchmark history output
benches/history/*.json
*.profraw
*.profdata
# Temporary / generated docs
plan.md
plan2.md
task.md
CHANGELOG_ISSUES_*.md
FILES_CHANGED.txt
TASK_IMPLEMENTATIONS.md
IMPLEMENTATION_SUMMARY.md
VERIFICATION_CHECKLIST.md