commit 7ac8e6597b5123c8e4daa4b975e55423907a5aee
parent 945c5ffe40dc306e7519a6aa48ecc2dae4edd2f0
Author: Konstantin Tarkus <hello@tarkus.me>
Date: Thu, 16 Apr 2015 09:35:18 +0300
Forbid any occurrence of a Use Strict Directive in ESLint settings
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.eslintrc b/.eslintrc
@@ -10,7 +10,7 @@
},
"rules": {
// Strict mode
- "strict": [2, "global"],
+ "strict": [2, "never"],
// Code style
"indent": [2, 2],
diff --git a/gulpfile.js b/gulpfile.js
@@ -184,7 +184,7 @@ gulp.task('sync', ['serve'], function(cb) {
});
gulp.watch(['build/**/*.*'].concat(
- src.server.map(function(file) {return '!' + file;})
+ src.server.map(function(file) { return '!' + file; })
), function(file) {
browserSync.reload(path.relative(__dirname, file.path));
});