Skip to content

Commit 3e3414a

Browse files
Fix linting
1 parent 14fcef7 commit 3e3414a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Diff for: cspell.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"tada",
3333
"tsup",
3434
"Unstaged",
35-
"wontfix"
35+
"wontfix",
36+
"vitest"
3637
]
3738
}

Diff for: src/shared/options/readOptionDefaults/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ export function readOptionDefaults() {
3636
const npmEmail =
3737
(await npmDefaults())?.email ?? (await packageAuthor()).email;
3838

39-
/* eslint-disable @typescript-eslint/prefer-nullish-coalescing, @typescript-eslint/no-non-null-assertion */
39+
/* eslint-disable @typescript-eslint/no-non-null-assertion */
4040
return gitEmail || npmEmail
4141
? { github: (gitEmail || npmEmail)!, npm: (npmEmail || gitEmail)! }
4242
: undefined;
43-
/* eslint-enable @typescript-eslint/prefer-nullish-coalescing, @typescript-eslint/no-non-null-assertion */
43+
/* eslint-enable @typescript-eslint/no-non-null-assertion */
4444
},
4545
funding: async () =>
4646
await tryCatchAsync(

0 commit comments

Comments
 (0)