You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Deno lint no-fallthrough is meant to prevent cases in a switch statement where code falls through to the next case because of a missing break statement. It detects if the scope is exited prematurely with a throw or a return statement, but won't handle Deno.exit and never function return type correctly:
Version: Deno 2.1.9
The Deno lint no-fallthrough is meant to prevent cases in a
switch
statement where code falls through to the next case because of a missingbreak
statement. It detects if the scope is exited prematurely with athrow
or areturn
statement, but won't handleDeno.exit
andnever
function return type correctly:The text was updated successfully, but these errors were encountered: