-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
69 lines (53 loc) · 1.55 KB
/
Copy path.gitignore
File metadata and controls
69 lines (53 loc) · 1.55 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
# Dependencies
node_modules/
**/node_modules/
# This is a pnpm-only project. Reject any stray npm-generated lockfile so
# tooling that accidentally runs `npm install` does not poison the graph.
package-lock.json
**/package-lock.json
# Build output — unified esbuild output:
# dist/extension.cjs — host bundle (package.json "main")
# dist/webview/index.{js,css} — webview bundle
dist/
*.tsbuildinfo
# E2E test build output (tsc emit for test/extension/e2e/**, launcher harness)
out/
# Vitest coverage output (@vitest/coverage-v8)
coverage/
# VSIX package artifacts
*.vsix
# VS Code extension test runner (no trailing slash: also matches a symlink to
# a shared download cache, not just a real directory)
.vscode-test
# Stray tsc emit under test/ (vitest runs .ts directly; a stray tsc compile
# could otherwise leave .js artifacts in the worktree)
test/**/*.js
test/**/*.js.map
# Environment / secrets
.env
.env.*
!.env.example
# Logs & caches
*.log
npm-debug.log*
yarn-debug.log*
pnpm-debug.log*
.eslintcache
# OS files
.DS_Store
Thumbs.db
._*
# Local history for Visual Studio Code
.history/
# Local Claude Code config / AI-facing docs (kept local, not published)
.claude/
# /review-cycle workspace (skill-internal scratch; per-session suffix)
.review-cycle/
.review-cycle-*/
# Generated perf fixtures (scripts/gen-perf-fixtures.mjs)
perf-fixtures/
# @vitest/browser failure artifacts (screenshots + attachments)
**/__screenshots__/
.vitest-attachments/
# Visual-smoke screenshots (pnpm smoke:visual — scripts/preview/visual-smoke.mjs)
artifacts/