We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 851a42f commit 950a218Copy full SHA for 950a218
2 files changed
extensions/ql-vscode/.eslintrc.js
@@ -29,6 +29,7 @@ const baseConfig = {
29
"plugin:@typescript-eslint/recommended",
30
],
31
rules: {
32
+ "@typescript-eslint/await-thenable": "error",
33
"@typescript-eslint/no-use-before-define": 0,
34
"@typescript-eslint/no-unused-vars": [
35
"warn",
extensions/ql-vscode/src/extension.ts
@@ -462,7 +462,7 @@ export async function activate(
462
) {
463
registerErrorStubs([checkForUpdatesCommand], (command) => async () => {
464
const installActionName = "Install CodeQL CLI";
465
- const chosenAction = await void showAndLogErrorMessage(
+ const chosenAction = await showAndLogErrorMessage(
466
`Can't execute ${command}: missing CodeQL CLI.`,
467
{
468
items: [installActionName],
0 commit comments