From f1a491144a2f0e6f7d1d5e34c145842f003eb09c Mon Sep 17 00:00:00 2001 From: Yannick Huard Date: Sun, 12 Feb 2017 00:45:19 +0100 Subject: [PATCH] chore(ci): force eslint config file --- gulpfile.js | 2 +- package.json | 13 ++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 0b3b2fa..de0a818 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -11,7 +11,7 @@ var coveralls = require('gulp-coveralls'); gulp.task('static', function () { return gulp.src('**/*.js') .pipe(excludeGitignore()) - .pipe(eslint()) + .pipe(eslint({configFile: '.eslintrc.json'})) .pipe(eslint.format()) .pipe(eslint.failAfterError()); }); diff --git a/package.json b/package.json index aad4e5f..9b9b5d5 100644 --- a/package.json +++ b/package.json @@ -25,17 +25,16 @@ "devDependencies": { "yeoman-test": "^1.6.0", "yeoman-assert": "^2.2.1", - "eslint": "^3.1.1", - "eslint-config-xo-space": "^0.15.0", - "gulp": "^3.9.0", + "eslint": "^3.15.0", + "gulp": "^3.9.1", "gulp-eslint": "^3.0.1", - "gulp-exclude-gitignore": "^1.0.0", + "gulp-exclude-gitignore": "^1.1.1", "gulp-line-ending-corrector": "^1.0.1", - "gulp-istanbul": "^1.0.0", + "gulp-istanbul": "^1.1.1", "gulp-mocha": "^3.0.1", "gulp-plumber": "^1.0.0", - "gulp-nsp": "^2.1.0", - "gulp-coveralls": "^0.1.0", + "gulp-nsp": "^2.4.2", + "gulp-coveralls": "^0.1.4", "semantic-release": "^6.3.2" }, "repository": "yhuard/generator-fractal-component",