From 324cbb2280cba8681395ed9f2b76c0ccdbf77c8d Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 30 May 2016 23:38:10 -0700 Subject: Upgrade ESlint to v1.7.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enable new rules: * no-empty-pattern * no-magic-numbers (exempting 0 and ±1) Refs #19908 [skip sauce] [skip validator] --- js/.eslintrc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'js') diff --git a/js/.eslintrc b/js/.eslintrc index e712f3247..813cd29a3 100644 --- a/js/.eslintrc +++ b/js/.eslintrc @@ -21,6 +21,7 @@ "no-duplicate-case": 2, "no-empty": 2, "no-empty-character-class": 2, + "no-empty-pattern": 2, "no-ex-assign": 2, "no-extra-boolean-cast": 2, "no-extra-parens": 0, @@ -29,6 +30,7 @@ "no-inner-declarations": 2, "no-invalid-regexp": 2, "no-irregular-whitespace": 2, + "no-magic-numbers": [2, {"ignore": [-1, 0, 1]}], "no-negated-in-lhs": 2, "no-obj-calls": 2, "no-regex-spaces": 2, -- cgit v1.2.3