From ebaa6a2042451df69c0ab47d421ec45c5d1be521 Mon Sep 17 00:00:00 2001 From: pypy Date: Sun, 12 Jan 2020 03:02:37 +0900 Subject: [PATCH] allow no-param-reassign --- html/.eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/html/.eslintrc.js b/html/.eslintrc.js index ed80e767..28531d9a 100644 --- a/html/.eslintrc.js +++ b/html/.eslintrc.js @@ -48,6 +48,7 @@ module.exports = { 'no-empty': ['error', { 'allowEmptyCatch': true }], 'no-magic-numbers': 0, 'no-mixed-operators': 0, + 'no-param-reassign': 0, 'no-plusplus': 0, 'no-redeclare': 0, 'no-tabs': 0,