Skip to content

Commit

Permalink
Fix eqeqeq warning (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
harupy authored Jun 15, 2023
1 parent 79725f8 commit 0b19718
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"eqeqeq": ["warn", "smart"],
"no-throw-literal": "warn",
"semi": "off"
},
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
try {
await clientPromise;
} catch {
// We don't care whether this failed, we'll restart afterwards again anyway
// We don't care whether this failed, we'll restart afterward anyway.
}
} else {
// In this case, we're currently restarting and a new restart is also queued, so we just do nothing and
Expand Down

0 comments on commit 0b19718

Please sign in to comment.