Skip to content

Commit 38398f9

Browse files
committed
chore(lint): false-positive noNonNullAssertion in status getters
1 parent 56e59d9 commit 38398f9

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

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)