Skip to content

Commit

Permalink
Merge pull request #397 from tshino/eslint9
Browse files Browse the repository at this point in the history
Fix lint warnings
  • Loading branch information
tshino authored Jul 21, 2024
2 parents 5eb8c16 + 9062586 commit 4a9feef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the Keyboard Macro Bata extension will be documented in this file.

### [Unreleased]
- Internal:
- Updated eslint major version from 8 to 9. [#396](https://github.com/tshino/vscode-kb-macro/issues/396)

### [0.13.17] - 2024-07-08
- Update
- Updated default keybindings wrappers based on VS Code 1.91.0. [#388](https://github.com/tshino/vscode-kb-macro/pull/388)
Expand Down
2 changes: 1 addition & 1 deletion generator/_get_default_keybindings.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async function main() {
emptyDir2
]
});
} catch (err) {
} catch (_err) {
console.error('Failed to run');
process.exit(1);
}
Expand Down
2 changes: 1 addition & 1 deletion test/runTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function main() {

// Download VS Code, unzip it and run the integration test
await runTests({ extensionDevelopmentPath, extensionTestsPath });
} catch (err) {
} catch (_err) {
console.error('Failed to run tests');
process.exit(1);
}
Expand Down

0 comments on commit 4a9feef

Please sign in to comment.