From c295b42052ce28912121a2dd105b52102fe8d082 Mon Sep 17 00:00:00 2001 From: AkiraFukushima Date: Sat, 1 Feb 2020 15:30:58 +0900 Subject: [PATCH] refs #164 Disable an eslint rule for promise param-names --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 3a95d89..8924b38 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -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' } }