Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/mq4-hover-shim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2015-03-23 22:19:06 +0300
committerChris Rebert <code@rebertia.com>2015-03-23 22:20:50 +0300
commit2f1c2fb8da34b81adaa195a3c6b248d7f01ffb2c (patch)
tree19bd16b21ab9238d59fd54bbb0928bc21aca12d6
parent115b0d85e53713116db18fbab1ca19472929e7ea (diff)
ESLint: no-extra-strict => global strict
-rw-r--r--.eslintrc2
-rw-r--r--Gruntfile.js3
2 files changed, 3 insertions, 2 deletions
diff --git a/.eslintrc b/.eslintrc
index 2c0c1f4..834a1a2 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -21,6 +21,7 @@
"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,
@@ -51,6 +52,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"]
diff --git a/Gruntfile.js b/Gruntfile.js
index ac0db8d..14203d0 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -1,8 +1,7 @@
/*eslint-env node */
+'use strict';
module.exports = function (grunt) {
- 'use strict';
-
grunt.util.linefeed = '\n';
require('load-grunt-tasks')(grunt);