From c12f5e51a8e00b6bf0da6a8905d36d5d91de4ebb Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 23 Mar 2015 12:06:18 -0700 Subject: Upgrade to grunt-eslint ^9.0.0 --- .eslintrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.eslintrc') diff --git a/.eslintrc b/.eslintrc index 41c85eb..7f4bef0 100644 --- a/.eslintrc +++ b/.eslintrc @@ -19,7 +19,10 @@ "no-array-constructor": 2, "no-bitwise": 2, "no-constant-condition": 0, + "no-dupe-args": 2, + "no-duplicate-case": 2, "no-eval": 2, + "no-extra-strict": 0, "no-floating-decimal": 2, "no-implied-eval": 2, "no-inline-comments": 0, @@ -31,7 +34,6 @@ "no-process-env": 2, "no-reserved-keys": 0, "no-self-compare": 2, - "no-space-before-semi": 2, "no-spaced-func": 2, "no-throw-literal": 2, "no-trailing-spaces": 2, @@ -42,6 +44,7 @@ "quotes": 0, "radix": 2, "semi": [2, "always"], + "semi-spacing": [2, {"before": false, "after": true}], "space-after-keywords": [2, "always", {"checkFunctionKeyword": true}], "space-before-blocks": [2, "always"], "space-before-function-parentheses": [2, {"anonymous": "always", "named": "never"}], @@ -50,6 +53,7 @@ "space-return-throw-case": 2, "space-unary-ops": [2, {"words": true, "nonwords": false}], "spaced-line-comment": [2, "always"], + "strict": [2, "global"], "vars-on-top": 0, "wrap-iife": [2, "inside"], "yoda": [2, "never"] -- cgit v1.2.3