chore: 补齐忽略规则(git/打包两侧),补齐 VS Code 任务与调试配置 - #4
Merged
Merged
Conversation
忽略规则 —— git 侧(.gitignore)与打包侧(.vscodeignore)职责不同,必须都写: - .gitignore 补 verification-*/ 与 verification */*:.vscodeignore 早有这条 (注释里记着 2026-09-20 实测漏了 107 KB),git 侧一直缺失 - .gitignore 补 ok_templates/:空目录 git 不报 ??,长期潜伏漏忽略 - .vscodeignore 补 .workbuddy/**:**必须** —— .gitignore 忽略了它但 vsce 只认 .vscodeignore;实测 vsce ls 里出现过 .workbuddy/memory/*.md,会被发到 Marketplace - .vscodeignore 补 DEVELOPMENT.en.md(与 DEVELOPMENT.md 对称)、.gitignore(运行时无用)、 docs/**(代码里 10 处引用全是注释,无一处运行时访问) VS Code 开发配置: - .vscode/tasks.json 补齐与 CI 对齐的测试/打包任务(两仓共 5 条) - .vscode/launch.json 启用 java 附加配置(需 vscjava.vscode-java-debug) - DEVELOPMENT.md / DEVELOPMENT.en.md 同步任务表,并修掉"launch.json 里有附加到 沙箱 IDE 配置"这句与实际不符的描述
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
Contributor
|
Warning Review limit reachedNext included review available in 59 minutes. View limit detailsLimit details: You’ve used the included review currently available. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. Review configuration: ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Advanced Run ID: 📒 Files selected for processing (6)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
chore: 补齐忽略规则(git/打包两侧),补齐 VS Code 任务与调试配置
背景
普查发现:忽略规则在 git 侧(.gitignore) 与 打包侧(.vscodeignore) 两侧职责不同、
必须都写,但多处只写了一侧。
忽略规则
.gitignore补verification-*/与verification */*——.vscodeignore早有这条(注释里记着 2026-09-20 实测漏了 107 KB),git 侧一直缺失
.gitignore补ok_templates/—— 空目录 git 不报??,长期潜伏漏忽略.vscodeignore补.workbuddy/**—— 必须:.gitignore忽略了它但 vsce 只认.vscodeignore;实测vsce ls里出现过.workbuddy/memory/*.md,会被发到 Marketplace.vscodeignore补DEVELOPMENT.en.md(与DEVELOPMENT.md对称)、.gitignore(运行时无用)、docs/**(代码里 10 处引用全是注释,无一处运行时访问)VS Code 开发配置
.vscode/tasks.json补齐与 CI 对齐的测试/打包任务(两仓共 5 条):npm test/npm run package/gradlew classes/gradlew test/gradlew buildPlugin.vscode/launch.json启用 java 附加配置(需vscjava.vscode-java-debug)DEVELOPMENT.md/DEVELOPMENT.en.md同步任务表,并修掉「launch.json 里有附加到沙箱 IDE 配置」这句与实际不符的描述(那段配置此前是注释掉的)
关系
main)chore: 忽略 .workbuddy/(agent 工作记录不进仓库) ok-script-toolkit-jetbrains#3(子仓库忽略
.workbuddy/)