豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Commit c170982

Browse files
authored
Merge pull request #18 from advanced-security/fixes
Minor Fixes
2 parents 8f8c187 + 13509a5 commit c170982

File tree

5 files changed

+1851
-177
lines changed

5 files changed

+1851
-177
lines changed

.github/instructions/typescript.instructions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ applyTo: '**/*.ts'
55
You are building a VSCode Extension that integrates with CodeQL to scan code for vulnerabilities.
66
The extension provides functionality to scan code for vulnerabilities using CodeQL.
77

8+
All code must be written to support Linux, Macos, and Windows.
9+
This includes path manipulation, command running, etc.
10+
811
Always use the logging functionality provided by the extension's `logger` module for consistent logging across the extension.
912
Always log actions that modify the state of the extension, such as configuration changes, CLI path updates, or user interactions.
1013

.release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
name: codeql-scanner-vscode
2+
repository: advanced-security/codeql-scanner-vscode
3+
version: 0.2.0
4+
default: true

.vscode/settings.json

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
{
2-
"codeql-scanner.github.owner": "",
3-
"codeql-scanner.github.repo": "",
4-
"codeql-scanner.searchPaths": [],
2+
"codeql-scanner.github.owner": "advanced-security",
3+
"codeql-scanner.github.repo": "codeql-scanner-vscode",
54
"codeql-scanner.suites": [
6-
"security-extended",
7-
"security-and-quality"
5+
"default"
86
],
97
"codeql-scanner.languages": [
10-
"javascript",
11-
"typescript"
8+
"javascript"
129
],
13-
"codeql-scanner.useLocalScan": true
10+
"codeql-scanner.threatModel": "Local"
1411
}

0 commit comments

Comments
 (0)