File tree 2 files changed +4
-3
lines changed
src/shared/options/readOptionDefaults
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 32
32
" tada" ,
33
33
" tsup" ,
34
34
" Unstaged" ,
35
- " wontfix"
35
+ " wontfix" ,
36
+ " vitest"
36
37
]
37
38
}
Original file line number Diff line number Diff line change @@ -36,11 +36,11 @@ export function readOptionDefaults() {
36
36
const npmEmail =
37
37
( await npmDefaults ( ) ) ?. email ?? ( await packageAuthor ( ) ) . email ;
38
38
39
- /* eslint-disable @typescript-eslint/prefer-nullish-coalescing, @typescript-eslint/ no-non-null-assertion */
39
+ /* eslint-disable @typescript-eslint/no-non-null-assertion */
40
40
return gitEmail || npmEmail
41
41
? { github : ( gitEmail || npmEmail ) ! , npm : ( npmEmail || gitEmail ) ! }
42
42
: undefined ;
43
- /* eslint-enable @typescript-eslint/prefer-nullish-coalescing, @typescript-eslint/ no-non-null-assertion */
43
+ /* eslint-enable @typescript-eslint/no-non-null-assertion */
44
44
} ,
45
45
funding : async ( ) =>
46
46
await tryCatchAsync (
You can’t perform that action at this time.
0 commit comments