Reputation: 5580
Is there any eslint rule to force space between ) and {?
)
{
if (true){ ... } function doSomething(){ ... }
if (true) { ... } function doSomething() { ... }
Upvotes: 1
Views: 340
Reputation: 8225
space-before-blocks rule does that.