Sarbbottam
Sarbbottam

Reputation: 5580

eslint rule to force space between ) and {

Is there any eslint rule to force space between ) and {?

Invalid

if (true){
  ...
}

function doSomething(){
  ...
}

Valid

if (true) {
  ...
}

function doSomething() {
  ...
}

Upvotes: 1

Views: 340

Answers (1)

gp.
gp.

Reputation: 8225

space-before-blocks rule does that.

Upvotes: 1

Related Questions