refs #164 Disable an eslint rule for promise param-names

This commit is contained in:
AkiraFukushima 2020-02-01 15:30:58 +09:00
parent 23a4e8e346
commit c295b42052

View file

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