-
Notifications
You must be signed in to change notification settings - Fork 269
Expand file tree
/
Copy path.gitignore
More file actions
234 lines (199 loc) · 7.12 KB
/
Copy path.gitignore
File metadata and controls
234 lines (199 loc) · 7.12 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# Cached Wayback Machine snapshots used by scripts/backfill-openapi-lastmod.js
# (a one-time, manually-run script -- these are large fetched artifacts, not
# source).
/.openapi-wayback-cache/
# Hugo default output directory
/public
# Hugo generated resources directory. Note: if the generated files
# were checked into the repo, could improve build times. But since
# we rebuild as part of CI/CD deployments, we just don't check-in.
/resources
.DS_Store
__pycache__/
node_modules
# Prettier cache
node_modules/.cache/prettier/
*.map
# For us Vim folk.
*.swp
# These are for IntelliJ based tooling
.idea/
*.iml
# We use yarn instead of npm. If someone happens to use npm, a
# package-lock.json file will be created, which is redundant with
# yarn's yarn.lock file. We ignore package-lock.json to prevent
# it from being added mistakenly.
/package-lock.json
/theme/package-lock.json
# Python virtual env dirs.
venv/
.venv/
# Pipenv
.env
Pipfile.lock
.python-version
# Ignore the Stencil component bundle and auto-generated type declarations.
/static/js/components.js
/static/js/components/
theme/stencil/src/components.d.ts
# Ignore webpack-generated JS entry bundles and chunks in static/js/.
/static/js/bundle.*.js
/static/js/algolia.*.js
/static/js/marketing.*.js
/static/js/homepage.*.js
/static/js/hero-animation.*.js
/static/js/chunk-*.js
# Ignore webpack-generated JS manifest for Hugo.
/data/js_manifest.json
# Ignore bundled CSS and JS files, which we write to the Hugo static
# directory in development in order to be able to use livereload.
static/css/styles.*.css
static/js/bundle.min.*.js
static/js/bundle.*.js
static/js/chunk-*.js
static/js/algolia.*.js
static/js/homepage.*.js
static/js/marketing.*.js
static/js/consent-manager.*.js
static/js/marketing-homepage.*.js
static/js/header-nav.*.js
data/js_manifest.json
data/openapi-spec.json
data/github_stars.yml
# Ignore webpack-generated assets from the build process.
/assets/css/
/assets/js/
# Ignore sync-generated icon assets (rebuilt by `make ensure`).
/assets/icons/phosphor/
/assets/icons/brand/
/assets/icons/sprite.svg
/assets/icons/sprite-manifest.json
# Ignore the inbox for custom icon staging.
/assets/icons/custom/_inbox/
# Ignore Cypress-generated content.
cypress/videos
cypress/screenshots
# Ignore the files we generate during the build and deployment process.
origin-bucket-metadata.json
redirects.txt
# Seconds spent waiting for earlier runs of the deploy workflow to finish
# (written by scripts/await-in-progress.js, read by the build-duration alert).
/.build-queue-wait-seconds
# Ignore vendored Hugo modules.
_vendor/
# Ignore Hugo build locks.
.hugo_build.lock
# Ignore registry-related build artifacts.
/content/registry/packages/*/api-docs
/static/registry
# Ignore log files.
/scripts/link-checker/pages-with-broken-links.txt
# Link-checker outputs consumed by the check-links workflow (generated at runtime).
/.broken-links.json
/.broken-links-pr.txt
# Existing-content review state files (generated at runtime by the
# review-existing-content workflow; the ledger lives in S3, staged through
# .content-review-ledger.json and synced down into .ledger-cache/).
/.content-review-queue.json
/.content-review-verdict.json
/.content-review-ledger.json
/.content-review-claims.json
/.ledger-cache/
/.traffic-snapshot
/.reader-signals.json
/.synthetic.patch
# Volatile-claim re-verification (claims-reverify.yml) and the shared
# signal-health state both lanes read-modify-write.
/.claims-reverify-report.json
/.claims-cache/
/.health-state.json
/.health-alert.txt
# Local cache for scripts/review-admin (synced S3 ledgers, exports, dashboard).
/.review-admin-cache/
# Lint re-gate scratch (worker re-lints the fix branch and captures output).
/.lint.log
/.lint-comment.md
# Review→publish handoff (the unprivileged review job exports the model's
# working-tree changes; the publish job re-checks the applied paths). The
# publish job also downloads the pre-compute artifacts into `.review-snapshot/`
# and writes the fix-scope report; keep both out of git (and prettier).
/.review-changes.patch
/.review-changes.paths
/.applied.paths
/.fix-scope-report.json
/.review-snapshot/
# Author-side worklist state for `/address-review` — one file per PR,
# recording the disposition (fixed / refuted / deferred / accepted /
# not-applicable) chosen for every finding in that PR's pinned review. Local
# working state for the walkthrough, never a commit.
/.review-worklist-*.json
# Glow-up lane equivalents (`.glowup-backlog.json`, the composed work list,
# and `.glowup-scope-report.json`, the scope gate's report). Both are written
# to the repo root before the `make lint` re-gate, so an unignored one makes
# `prettier --check .` fail and strands the PR in draft.
/.glowup-*.json
# docs-review pre-computation artifacts the worker generates before the
# review (claim extraction/verification, Vale, frontmatter, cross-sibling,
# readthrough).
/.fetched-urls.json
/.candidate-claims.json
/.candidate-claims-regex.json
/.candidate-claims-llm-1.json
/.candidate-claims-llm-2.json
/.verified-claims.json
/.vale-raw.json
/.vale-findings.json
/.frontmatter-validation.json
/.cross-sibling-discovery.json
/.readthrough-findings.json
/.syntax-findings.json
# Intermediate of the Vale + markdown-syntax merge. Survives exactly when the
# `jq` merge fails, which is the case its `|| true` exists to tolerate — and the
# update lane runs with contents: write.
/.vale-raw.merged.json
/.editorial-balance.json
/.hugo-build.json
/.pr-body-draft.md
# Composed review body + the update lane's scratch. The update lane runs with
# contents: write and grants the model Bash(git:*), so an unignored artifact
# here can ride along in a `git add -A`.
/.review-draft.md
/.pinned-body.md
/.style-suggestions.json
/.claude-mention-body.txt
/.review-changes.u0.diff
.doctrees/
.buildinfo
# VScode solution files.
*.sln
#Claude settings
**/.claude/settings.local.json
# mise local
mise.local.toml
# alias verification outputs
scripts/alias-verification/aliases-correct.txt
scripts/alias-verification/aliases-missing.txt
scripts/alias-verification/aliases-suspicious.txt
scripts/alias-verification/deletes.txt
scripts/alias-verification/renames.txt
scripts/alias-verification/fixes-data.txt
scripts/alias-verification/historical-aliases-correct.txt
scripts/alias-verification/historical-aliases-missing.txt
scripts/alias-verification/historical-aliases-report.txt
scripts/alias-verification/historical-fixes.json
# Ignore compiled Go binaries in static programs.
static/programs/*-go/*-go
# Local MCP server config (developer-specific, points at local Figma desktop)
.mcp.json
# Claude Code runtime lock (ScheduleWakeup)
.claude/scheduled_tasks.lock
# Ephemeral build-time meta images (generated by scripts/generate-meta-images.mjs)
assets/images/generated/
# Generated by scripts/prettier.sh: .prettierignore unioned with this file.
# Written to the repo root (prettier resolves --ignore-path patterns relative to
# the ignore file's own directory) and removed when the run exits.
/.prettierignore.union
# Compiled output for the theme unit tests (see theme/tsconfig.test.json).
/theme/bin-test/
# Playwright MCP session artifacts (browser snapshots written into the repo root).
.playwright-mcp/