Skip to content

Commit 20e4b00

Browse files
committed
chore: silence false positives for biome rule lint/style/noNonNullAssertion
1 parent 304f1f4 commit 20e4b00

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/utils/authenticate.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ async function redirectToLocalStack() {
6060
);
6161
const redirectSearchParams = new URLSearchParams(redirectUri.query);
6262

63+
// biome-ignore lint/style/noNonNullAssertion: false positive
6364
const url = new URL(process.env.LOCALSTACK_WEB_AUTH_REDIRECT!);
6465
url.searchParams.set("windowId", redirectSearchParams.get("windowId") ?? "");
6566

src/utils/container-status.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export async function createContainerStatusTracker(
4040

4141
return {
4242
status() {
43+
// biome-ignore lint/style/noNonNullAssertion: false positive
4344
return status!;
4445
},
4546
onChange(callback) {

0 commit comments

Comments
 (0)