-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path.gitignore
More file actions
182 lines (162 loc) · 4.23 KB
/
Copy path.gitignore
File metadata and controls
182 lines (162 loc) · 4.23 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
# ===== Android =====
*.iml
.gradle/
local.properties
signing.properties
.idea/
/android/.idea/
/android/build/
/android/app/build/
# The Kotlin Gradle plugin's own project directory, holding compiler session
# markers and error dumps. Written by every build, so leaving it untracked but
# unignored means `git status` is never clean and `git add -A` sweeps compiler
# scratch into a commit.
/android/.kotlin/
/android/app/release/
/android/captures/
.externalNativeBuild/
.cxx/
*.apk
*.aab
*.ap_
*.dex
*.jks
*.keystore
# ===== Node.js =====
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.yarn-integrity
.pnp.*
# ===== VS Code Build (regenerated by scripts/fetch-vscode-oss.sh) =====
/server/vscode-reh/
/server/*.tar.gz
*.vsix
# ===== Native Binaries (large, built separately) =====
/android/app/src/main/jniLibs/arm64-v8a/*.so
# ===== VS Code Assets (built, not committed) =====
/android/app/src/main/assets/vscode-web/
/android/app/src/main/assets/vscode-reh/
/android/app/src/main/assets/python-stdlib/
/android/app/src/main/assets/extensions/*
# This project's own extensions are source and belong in git; everything else in
# here is downloaded by download-extensions.sh and does not. One pattern rather
# than a line per extension: the list had to be edited for every extension added,
# it still named one that no longer exists, and a forgotten line means the new
# extension is silently absent from the APK with nothing to explain why.
!/android/app/src/main/assets/extensions/vscodroid.vscodroid-*/
/android/app/src/main/assets/usr/
# ===== Toolchain Asset Packs (populated by scripts/download-*.sh) =====
/android/toolchain_ruby/src/main/assets/usr/
/android/toolchain_ruby/src/main/assets/toolchain_ruby.json
/android/toolchain_java/src/main/assets/usr/
/android/toolchain_java/src/main/assets/toolchain_java.json
# ===== Toolchain Asset Pack build intermediates =====
/android/toolchain_ruby/build/
/android/toolchain_java/build/
# ===== Bundletool (local AAB testing only) =====
bundletool.jar
*.apks
# ===== Cross-compilation build artifacts =====
/.build/
/toolchains/build/
/toolchains/termux-packages/
/toolchains/extensions/
/toolchains/musl/
# download-claude-code.sh is gone; this keeps its leftover work directory from
# showing up as untracked on machines that ran it before the bundling was dropped.
/toolchains/claude-code/
# ===== Python =====
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.eggs/
venv/
.venv/
# ===== IDE =====
.vscode/
!.vscode/settings.json
!.vscode/extensions.json
.idea/
*.swp
*.swo
*~
# ===== OS =====
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
# ===== Environment =====
.env
.env.local
.env.*.local
# ===== Logs =====
*.log
logs/
# ===== Testing =====
/coverage/
*.gcda
*.gcno
# ===== AI Agents =====
# Claude Code
CLAUDE.md
.claude/
# Cursor
.cursor/
.cursorignore
.cursorindexingignore
.cursorrules
# KiloCode
.kilocode/
# GitHub Copilot
.copilot/
.github/copilot-instructions.md
# Windsurf / Codeium
.windsurf/
.windsurfrules
.codeium/
# Aider
.aider*
.aiderignore
# Continue
.continue/
.continuerc.json
# Cline
.cline/
.clinerules
# JetBrains AI
.junie/
# Google Gemini / Antigravity
.gemini/
# Playwright MCP
.playwright-mcp/
# Project AI planning docs
docs/plans/
_docs/
plans/
# ===== Misc =====
*.tmp
*.bak
*.orig
toolchain-zips/
# Where release.yml stages downloaded build artifacts; a local run leaves it behind
/artifacts/
# Written by scripts/write-build-manifest.py. It belongs on a release as a record
# of what that build resolved, not in the tree, where it would change every run
/build-manifest.txt
# Both are staging directories for the native debug symbols release.yml attaches:
# it unpacks the bundle's BUNDLE-METADATA into pulled/ and assembles the .sym
# files under symbols/ before zipping them. Reproducing that step locally leaves
# roughly 9 MB of ELF symbol data in the tree, untracked and, until now, not
# ignored, so a `git add -A` would have committed build output.
/pulled/
/symbols/
# Generated by scripts/build-docs-site.py at deploy time, from docs/USER_GUIDE.md
# and docs/PRIVACY_POLICY.md. Committing them would put the same prose in the
# repository twice, with nothing keeping the copies in step, which is the defect
# the generator exists to remove.
/docs/site/guide.html
/docs/site/privacy-policy.html