Enforce space after function name
This commit is contained in:
parent
3f1cda2e37
commit
2c5491e131
|
@ -40,5 +40,8 @@
|
||||||
"no-trailing-spaces": ["error"],
|
"no-trailing-spaces": ["error"],
|
||||||
"semi": ["error"],
|
"semi": ["error"],
|
||||||
"space-before-blocks": ["error"],
|
"space-before-blocks": ["error"],
|
||||||
|
"space-before-function-paren": ["error", { "anonymous": "always",
|
||||||
|
"named": "never",
|
||||||
|
"asyncArrow": "always" }],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue