-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy path.gitignore
More file actions
91 lines (88 loc) · 2.52 KB
/
Copy path.gitignore
File metadata and controls
91 lines (88 loc) · 2.52 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
.*.swp
doc
tags
build
target
ctags.rust
*.csv*
*.tsv*
main
*.idx
builds
.vscode/launch.json
*.xls
*.xlsx
*.zip
.DS_store
.DS_Store
src/.DS_Store
*.txt
*.svg
perf.data*
*.json
# Exception: vendored third-party license texts must be tracked. The blanket *.txt above would
# otherwise silently drop them, and a vendored MIT/BSD component whose copyright notice never gets
# committed is exactly the compliance gap THIRD_PARTY_NOTICES.md exists to close.
!src/cmd/assets/LICENSE-*.txt
!resources/**/LICENSE*.txt
# Exception: vendored DataTables i18n catalogs for `viz` Data Schematic localization. These are SOURCE,
# not test fixtures — `src/cmd/viz.rs` pulls them in with `include_str!`, so the blanket *.json
# above would leave the tree compiling locally while failing for everyone else with a
# "couldn't read ... es.json" the moment it is checked out fresh. Provenance and the matching
# library pins are recorded in src/cmd/assets/i18n/VENDORED.md.
!src/cmd/assets/i18n/**/*.json
# Exception: allow Claude Code settings, skill definition JSON files, npm config, and TypeScript configs
!.claude/settings.json
!.claude/skills/qsv/*.json
!.claude/skills/package.json
!.claude/skills/package-lock.json
!.claude/skills/tsconfig.json
!.claude/skills/tsconfig.test.json
!.claude/skills/.claude-plugin/plugin.json
!.claude/skills/hooks/hooks.json
!.claude/skills/manifest.json
!.claude/skills/examples/*.*
!.claude/skills/tests/fixtures/*.csv
# Profile golden fixtures + init-context template
!tests/resources/profile/golden/*.expected.json
!tests/resources/profile/golden/*.csv
# auto-generated stats cache files must NOT be committed even though
# they match the *.csv whitelist above
tests/resources/profile/golden/*.stats.csv
tests/resources/profile/golden/*.stats.csv.*
!tests/resources/profile/dcat-init-context.json
# viz golden-check fixture (scripts/viz-golden-check.sh); no examples/viz fixture
# exercises the cyclic-seasonality panel
!scripts/viz_golden_cyclic_events.csv
*.log
*.log.gz
*.bak
*.code-workspace
tmp/*
*.icloud
*.parquet
*.rsbak
*.luau
*.sql
.history
*.rswip
.env
*.db
*.snappy
*.sz
*.key
*.psv
scripts/benchmark_data.*
*.mcpb
.roborev.toml
/.claude/skills/docs/diagnosis
/docs/audits
/.claude/skills/docs/audits
*.plugin
# Local working notes for the qsv profile follow-up effort.
# Tracked initially in PR #3908; dropped from git after #3910 merged
# so the running status doc stays local to each contributor's tree.
profile*-handoff.md
# Python bytecode from examples/viz/gen_gallery.py (the viz gallery generator)
examples/viz/__pycache__/
*.pyc