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-01-21 07:47:27 +0300
committerChris Rebert <code@rebertia.com>2015-01-21 07:47:27 +0300
commitcf87820a7295e9905ba492f1506f16d496b1817b (patch)
tree06653cacaf9acaf8709faa1a512c428986cd4985
parent8aa0ebc3670f22b66b79dcb296f5ab9cb0cf51e8 (diff)
Revert "fix enabling of JSCS's ES6 mode"
The old way actually works fine. This reverts commit 8aa0ebc3670f22b66b79dcb296f5ab9cb0cf51e8.
-rw-r--r--.jscsrc1
-rw-r--r--Gruntfile.js3
2 files changed, 1 insertions, 3 deletions
diff --git a/.jscsrc b/.jscsrc
index 3079568..db99a77 100644
--- a/.jscsrc
+++ b/.jscsrc
@@ -9,6 +9,7 @@
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"disallowSpacesInCallExpression": true,
"disallowTrailingWhitespace": true,
+ "esnext": true,
"requireCapitalizedConstructors": true,
"requireCommaBeforeLineBreak": true,
"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch", "case", "default"],
diff --git a/Gruntfile.js b/Gruntfile.js
index 9a59673..52c0a25 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -56,9 +56,6 @@ module.exports = function (grunt) {
}
},
jscs: {
- options: {
- esnext: true
- },
gruntfile: {
src: '<%= jshint.gruntfile.src %>'
},