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:27 +0300
committerChris Rebert <code@rebertia.com>2015-03-23 22:20:50 +0300
commit21bf4b5a6e080c168d88e174c29203ebbf2bd483 (patch)
tree2241aab1638898672ec8571924dbf7f9b4f6f389
parent2f1c2fb8da34b81adaa195a3c6b248d7f01ffb2c (diff)
ESLint: no-space-before-semi => semi-spacing
-rw-r--r--.eslintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.eslintrc b/.eslintrc
index 834a1a2..7fc2b7c 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -33,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,
@@ -44,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"}],