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

github.com/twbs/grunt-css-flip.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc6
1 files changed, 5 insertions, 1 deletions
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"]