Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yutotnh committed Jan 16, 2024
1 parent d0897b4 commit e748eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let logOutputChannel: vscode.LogOutputChannel;
// This method is called when your extension is activated
// Your extension is activated the very first time the command is executed
export function activate(context: vscode.ExtensionContext) {
const extensionDisplayName = "Word Divider";
let extensionDisplayName = "Word Divider";

Check failure on line 8 in src/extension.ts

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

'extensionDisplayName' is never reassigned. Use 'const' instead

Check failure on line 8 in src/extension.ts

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

'extensionDisplayName' is never reassigned. Use 'const' instead

Check failure on line 8 in src/extension.ts

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

'extensionDisplayName' is never reassigned. Use 'const' instead
logOutputChannel = vscode.window.createOutputChannel(extensionDisplayName, {
log: true,
});
Expand Down

0 comments on commit e748eed

Please sign in to comment.