-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
44 lines (37 loc) · 1.27 KB
/
.gitignore
File metadata and controls
44 lines (37 loc) · 1.27 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
# Build artifacts
target/
dist/
build/
*.egg-info/
node_modules/
__pycache__/
.venv/
.uv-cache/
# Web UI build output (populated by scripts/build_web.py before `hatch build`).
# .gitkeep stays so the source tree exists in checkouts and the wheel's
# force-include glob has something to match.
packages/python/goldenmatch/goldenmatch/web/static/*
!packages/python/goldenmatch/goldenmatch/web/static/.gitkeep
# Playwright runtime artifacts
packages/python/goldenmatch/web/frontend/test-results/
packages/python/goldenmatch/web/frontend/playwright-report/
# YAML-edit backups (web UI's POST /api/v1/rules/save writes goldenmatch.yml.bak
# next to the file before clobbering — local-only safety net, not source).
*.yml.bak
# Steward labels — runtime-written by the inspector's review tab. Keep them
# out of git so a contributor's labels don't ride along on PRs. If you want
# seed labels for a demo project, commit a curated labels.seed.jsonl and
# rename at use time.
labels.jsonl
# Generated outputs
*_lineage.json
*_clusters.csv
# Allow committed test fixtures and demo project that mimic run outputs
!packages/python/goldenmatch/tests/web/fixtures/**
!packages/python/goldenmatch/tests/**/fixtures/**
!packages/python/goldenmatch/web/demo/**
# IDE
.vscode/
.idea/
# Turborepo
.turbo/