feat(eslint): Rule "space-before-function-paren"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2020-02-13 16:15:11 +04:00
parent 86f818d0b6
commit 90014ad8f6
2 changed files with 9 additions and 1 deletions

View File

@ -190,6 +190,14 @@
"ignoreCase": false
}
],
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"asyncArrow": "always",
"named": "never"
}
],
"valid-jsdoc": [
"off"
],