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:
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc6
1 files changed, 5 insertions, 1 deletions
diff --git a/.eslintrc b/.eslintrc
index ebcdc19..7fc2b7c 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -18,7 +18,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,
@@ -30,7 +33,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,
@@ -41,6 +43,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"}],
@@ -49,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"]