File tree Expand file tree Collapse file tree 4 files changed +3
-1
lines changed Expand file tree Collapse file tree 4 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 43
43
"noDynamicNamespaceImportAccess" : " off"
44
44
},
45
45
"suspicious" : {
46
- "noFallthroughSwitchClause" : " off" ,
47
46
"noConfusingVoidType" : " off" ,
48
47
"noPrototypeBuiltins" : " off" ,
49
48
"noAssignInExpressions" : " off" ,
Original file line number Diff line number Diff line change @@ -877,6 +877,7 @@ export async function runLoaders(
877
877
case RequestType . GetLogger : {
878
878
const [ type , name , arg ] = args ;
879
879
( loaderContext . getLogger ( name ) as any ) [ type ] ( ...arg ) ;
880
+ break ;
880
881
}
881
882
case RequestType . EmitError : {
882
883
const workerError = args [ 0 ] ;
Original file line number Diff line number Diff line change @@ -461,6 +461,7 @@ async function loaderImpl(
461
461
break ;
462
462
}
463
463
}
464
+ break ;
464
465
}
465
466
case JsLoaderState . Normal : {
466
467
while ( loaderContext . loaderIndex >= 0 ) {
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ const createConsoleLogger = ({
123
123
if ( ! debug ) return ;
124
124
console . trace ( ) ;
125
125
break ;
126
+ // biome-ignore lint/suspicious/noFallthroughSwitchClause: This case is falling through to the next case.
126
127
case LogType . groupCollapsed :
127
128
if ( ! debug && loglevel > LogLevel . log ) return ;
128
129
if ( ! debug && loglevel > LogLevel . verbose ) {
You can’t perform that action at this time.
0 commit comments