Remove space-before-function-paren rule from eslint

This commit is contained in:
AkiraFukushima 2019-04-20 15:43:11 +09:00
parent 9db6db6afe
commit 4ccd800a61
1 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@ module.exports = {
}
],
camelcase: 'off',
'@typescript-eslint/camelcase': 'off'
'@typescript-eslint/camelcase': 'off',
'space-before-function-paren': 'off'
}
}