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
It would be nice if you could configure certain lines that start with a keyword (if/return/etc) to have either an empty line preceding and/or following that line/construct.
Good:
val=1;returnval;}
Bad:
val=1;returnval;}
Good:
if(val===1){console.log(val);}
With an override for all first lines in a function/if/switch/... block.
function(){if(val===1){console.log(val);}}();
Bad:
if(val===1){console.log(val);}
The text was updated successfully, but these errors were encountered:
Trying to get this logic.Within a specified block statement (compound statement if/else/for/while/try/.. or function scope) the ReturnStatement must be always preceding by a line-break?
It would be nice if you could configure certain lines that start with a keyword (if/return/etc) to have either an empty line preceding and/or following that line/construct.
Good:
Bad:
Good:
With an override for all first lines in a function/if/switch/... block.
Bad:
The text was updated successfully, but these errors were encountered: