From e698c5d27bd8e6cb4c158474e54b332877cddefc Mon Sep 17 00:00:00 2001 From: wimrijnders Date: Thu, 20 Jul 2017 21:04:38 +0200 Subject: [PATCH] Fix missing commend end in .eslintrc (#3264) Fix typo in #3262, ending `*/` of a block comment was missing. Also disabled new item `no-useless-escape` for linting, because this triggers a bit too often for comfort. --- .eslintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index f442eda4..090d9308 100644 --- a/.eslintrc +++ b/.eslintrc @@ -16,6 +16,7 @@ "complexity": [2, 55], "max-statements": [2, 115], "no-unreachable": 1, + "no-useless-escape": 0, /* // some disabled options which might be useful "no-console": 0, @@ -26,8 +27,8 @@ "no-mixed-spaces-and-tabs": 0, "no-redeclare": 0, "no-unused-vars": 0, - "no-useless-escape": 0, // following will flag presence of console.log as error. "no-console": ["error", { allow: ["warn", "error"] }], +*/ } }