Open
Description
Environment information
Reproduces in playground (presumably v1.7.3).
Configuration
Default config.
Playground link
function cool(x) {
switch (x) {
case 4: // guaranteed to be random
case 42: // classic
case 1337: // ELITE
{
console.log("x is cool");
break;
}
default: {
console.error("x is not cool");
}
}
}
… is reformatted into:
// …
case 42: // classic
case 1337: { // ELITE
console.log("x is cool");
// …
However, this is not stable. Running the formatter again produces:
// …
case 42: // classic
case 1337: {
// ELITE
console.log("x is cool");
// …
The comment now appears to refer to the contents of the case block rather than the case statement. I would suggest that the original formatting is preserved, else it becomes impossible to annotate the final case statement in a situation like this.
Code of Conduct
- I agree to follow Biome's Code of Conduct