Enforce space after function name

This commit is contained in:
Pierre Ossman 2018-09-06 17:34:15 +02:00
parent 3f1cda2e37
commit 2c5491e131
19 changed files with 181 additions and 178 deletions

View File

@ -40,5 +40,8 @@
"no-trailing-spaces": ["error"],
"semi": ["error"],
"space-before-blocks": ["error"],
"space-before-function-paren": ["error", { "anonymous": "always",
"named": "never",
"asyncArrow": "always" }],
}
}