Skip to content

Commit a2ae830

Browse files
authored
chore(lint): silent and fix some lint warnings (#14)
1 parent aa75669 commit a2ae830

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/plugins/status-bar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default createPlugin(
7979
);
8080

8181
context.subscriptions.push(
82-
commands.registerCommand("localstack.refreshStatusBar", async () => {
82+
commands.registerCommand("localstack.refreshStatusBar", () => {
8383
const setupStatus = setupStatusTracker.status();
8484

8585
if (setupStatus === "setup_required") {

src/utils/localstack-status.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export async function createLocalStackStatusTracker(
5050

5151
return {
5252
status() {
53+
// biome-ignore lint/style/noNonNullAssertion: false positive
5354
return status!;
5455
},
5556
onChange(callback) {

src/utils/setup-status.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export async function createSetupStatusTracker(
3535

3636
return {
3737
status() {
38+
// biome-ignore lint/style/noNonNullAssertion: false positive
3839
return status!;
3940
},
4041
onChange(callback) {

0 commit comments

Comments
 (0)