Is there a rule to enforce blocks in if/else statements? E.g. this should be an error:
if (foo)
bar();
this is ok:
if (foo) {
bar();
}
--
You received this message because you are subscribed to the Google Groups
"ESLint" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
