Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/instructions/typescript.instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ applyTo: '**/*.ts'
You are building a VSCode Extension that integrates with CodeQL to scan code for vulnerabilities.
The extension provides functionality to scan code for vulnerabilities using CodeQL.

All code must be written to support Linux, Macos, and Windows.
This includes path manipulation, command running, etc.

Always use the logging functionality provided by the extension's `logger` module for consistent logging across the extension.
Always log actions that modify the state of the extension, such as configuration changes, CLI path updates, or user interactions.

Expand Down
4 changes: 4 additions & 0 deletions .release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
name: codeql-scanner-vscode
repository: advanced-security/codeql-scanner-vscode
version: 0.2.0
default: true
13 changes: 5 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{
"codeql-scanner.github.owner": "",
"codeql-scanner.github.repo": "",
"codeql-scanner.searchPaths": [],
"codeql-scanner.github.owner": "advanced-security",
"codeql-scanner.github.repo": "codeql-scanner-vscode",
"codeql-scanner.suites": [
"security-extended",
"security-and-quality"
"default"
],
"codeql-scanner.languages": [
"javascript",
"typescript"
"javascript"
],
"codeql-scanner.useLocalScan": true
"codeql-scanner.threatModel": "Local"
}
Loading