From f07e23c615673d47a8ab25ca478ef10bd88d2bf2 Mon Sep 17 00:00:00 2001 From: pypy Date: Sat, 11 Jan 2020 21:52:38 +0900 Subject: [PATCH] allow block-scoped-var, no-redeclare --- html/.eslintrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/html/.eslintrc.js b/html/.eslintrc.js index f8639235..d5eb678b 100644 --- a/html/.eslintrc.js +++ b/html/.eslintrc.js @@ -23,6 +23,7 @@ module.exports = { }, 'root': true, 'rules': { + 'block-scoped-var': 0, 'camelcase': 0, 'capitalized-comments': 0, 'complexity': 0, @@ -48,6 +49,7 @@ module.exports = { 'no-magic-numbers': 0, 'no-mixed-operators': 0, 'no-plusplus': 0, + 'no-redeclare': 0, 'no-tabs': 0, 'no-ternary': 0, 'no-undefined': 0,