Skip to content

Commit 9136bb9

Browse files
committed
feat(version): v0.1.0
1 parent 7cf23d8 commit 9136bb9

File tree

1 file changed

+29
-3
lines changed

1 file changed

+29
-3
lines changed

package.json

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "codeql-scanner-vscode",
33
"displayName": "CodeQL Scanner",
44
"description": "VSCode extension for CodeQL to scan and analyze code for vulnerabilities using GitHub's CodeQL.",
5-
"version": "0.0.1",
5+
"version": "0.1.0",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/geekmasher/codeql-scanner-vscode.git"
@@ -63,6 +63,21 @@
6363
"command": "codeql-scanner.clearLogs",
6464
"title": "CodeQL: Clear Logs",
6565
"category": "CodeQL Scanner"
66+
},
67+
{
68+
"command": "codeql-scanner.clearDiagnostics",
69+
"title": "CodeQL: Clear Inline Diagnostics",
70+
"category": "CodeQL Scanner"
71+
},
72+
{
73+
"command": "codeql-scanner.copyFlowPath",
74+
"title": "CodeQL: Copy Flow Path",
75+
"category": "CodeQL Scanner"
76+
},
77+
{
78+
"command": "codeql-scanner.navigateFlowSteps",
79+
"title": "CodeQL: Navigate Flow Steps",
80+
"category": "CodeQL Scanner"
6681
}
6782
],
6883
"configuration": {
@@ -102,8 +117,7 @@
102117
"type": "string"
103118
},
104119
"default": [
105-
"security-extended",
106-
"security-and-quality"
120+
"default"
107121
],
108122
"description": "CodeQL query suites to run",
109123
"scope": "resource"
@@ -191,6 +205,18 @@
191205
"command": "codeql-scanner.scan",
192206
"group": "codeql@1"
193207
}
208+
],
209+
"view/item/context": [
210+
{
211+
"command": "codeql-scanner.copyFlowPath",
212+
"when": "view == codeql-scanner.results && viewItem == result",
213+
"group": "navigation"
214+
},
215+
{
216+
"command": "codeql-scanner.navigateFlowSteps",
217+
"when": "view == codeql-scanner.results && viewItem == result",
218+
"group": "navigation"
219+
}
194220
]
195221
},
196222
"viewsContainers": {

0 commit comments

Comments
 (0)