Skip to content
This repository was archived by the owner on Sep 17, 2018. It is now read-only.

Commit c12f5e5

Browse files
committed
Upgrade to grunt-eslint ^9.0.0
1 parent a041e02 commit c12f5e5

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.eslintrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
"no-array-constructor": 2,
2020
"no-bitwise": 2,
2121
"no-constant-condition": 0,
22+
"no-dupe-args": 2,
23+
"no-duplicate-case": 2,
2224
"no-eval": 2,
25+
"no-extra-strict": 0,
2326
"no-floating-decimal": 2,
2427
"no-implied-eval": 2,
2528
"no-inline-comments": 0,
@@ -31,7 +34,6 @@
3134
"no-process-env": 2,
3235
"no-reserved-keys": 0,
3336
"no-self-compare": 2,
34-
"no-space-before-semi": 2,
3537
"no-spaced-func": 2,
3638
"no-throw-literal": 2,
3739
"no-trailing-spaces": 2,
@@ -42,6 +44,7 @@
4244
"quotes": 0,
4345
"radix": 2,
4446
"semi": [2, "always"],
47+
"semi-spacing": [2, {"before": false, "after": true}],
4548
"space-after-keywords": [2, "always", {"checkFunctionKeyword": true}],
4649
"space-before-blocks": [2, "always"],
4750
"space-before-function-parentheses": [2, {"anonymous": "always", "named": "never"}],
@@ -50,6 +53,7 @@
5053
"space-return-throw-case": 2,
5154
"space-unary-ops": [2, {"words": true, "nonwords": false}],
5255
"spaced-line-comment": [2, "always"],
56+
"strict": [2, "global"],
5357
"vars-on-top": 0,
5458
"wrap-iife": [2, "inside"],
5559
"yoda": [2, "never"]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"grunt-contrib-clean": "^0.6.0",
2828
"grunt-contrib-jshint": "^0.11.0",
2929
"grunt-contrib-nodeunit": "^0.4.1",
30-
"grunt-eslint": "^7.0.0",
30+
"grunt-eslint": "^9.0.0",
3131
"grunt-jscs": "^1.5.0",
3232
"load-grunt-tasks": "^3.1.0"
3333
},

0 commit comments

Comments
 (0)