fix .eslintrc

This commit is contained in:
Matteo Pagliazzi
2015-11-23 10:09:17 +01:00
parent dcfd7eb6d0
commit 6d238a0770
+5 -5
View File
@@ -49,7 +49,7 @@
"no-shadow-restricted-names": 2,
"no-shadow": [2, { "builtinGlobals": true }],
"no-undef-init": 2,
"no-undef": [2, { typeof: true }],
"no-undef": [2, { "typeof": true }],
"no-unused-vars": 2,
"no-use-before-define": 2,
"global-require": 2,
@@ -104,17 +104,17 @@
"space-infix-ops": 2,
"space-return-throw-case": 2,
"space-unary-ops": 2,
"spaced-comment": [2, "always", { exceptions: ["-"]}],
"spaced-comment": [2, "always", { "exceptions": ["-"]}],
"padded-blocks": [2, "never"],
"no-multiple-empty-lines": [2, {max: 2}]
"no-multiple-empty-lines": [2, {"max": 2}]
},
"env": {
"es6": true,
"mocha": true,
"node": true
},
ecmaFeatures : {
modules: true
"ecmaFeatures" : {
"modules": true
},
"extends": "eslint:recommended"
}