mirror of
https://github.com/alibaba/open-code-review.git
synced 2026-07-09 17:28:58 +00:00
feat(vscode): add VSCode extension for AI code review with security fixes
Add VSCode extension providing sidebar-based AI code review integration, including CLI/Git/Config services, webview UI with file diff viewer, inline comment provider, and comprehensive test coverage. Fix 9 Dependabot security vulnerabilities by adding yarn resolutions for undici, form-data, js-yaml, and minimatch. Co-authored-by: lizhengfeng <lizhengfeng.lzf@alibaba-inc.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
97de26e027
commit
dc4bf69854
57 changed files with 11324 additions and 0 deletions
13
extensions/vscode/.vscode/launch.json
vendored
Normal file
13
extensions/vscode/.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Run Extension",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
|
||||
"outFiles": ["${workspaceFolder}/out/**/*.js"],
|
||||
"preLaunchTask": "npm: compile"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue