Node.js   发布时间:2022-04-24  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了node.js – 如何使用gulp-eslint修复文件?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 eslint一口气.

没有gulp,我只是运行eslint ./src –fix.我无法弄清楚如何用gulp实现这一点.我尝试下面,将修复设置为true,但它不修复任何文件

gulp.task('lint',['./src/**.js'],() => {
return gulp.src()
    .pipe($.eslint({fix:truE}))
    .pipe($.eslint.format())
    .pipe($.eslint.failAfterError());
});

我希望修复./src下的所有文件.我该如何实现这一目标?

解决方法

这是在我的项目中正常工作的方式:
var gulp = require('gulp'),eslint = require('gulp-eslint'),gulpIf = require('gulp-if');


function isFixed(filE) {
    // Has ESLint fixed the file contents?
    return file.eslint != null && file.eslint.fixed;
}


gulp.task('lint',function () {
    // ESLint ignores files with "node_modules" paths.
    // So,it's best to have gulp ignore the directory as well.
    // Also,Be sure to return the stream from the task;
    // Otherwise,the task may end before the stream has finished.
    return gulp.src(['./src/**.js','!node_modules/**'])
        // eslint() attaches the lint output to the "eslint" property
        // of the file object so it can be used by other modules.
        .pipe(eslint({fix:truE}))
        // eslint.format() outputs the lint results to the console.
        // Alternatively use eslint.formatEach() (see Docs).
        .pipe(eslint.format())
        // if fixed,write the file to dest
        .pipe(gulpIf(isFixed,gulp.dest('../test/fixtures')))
        // To have the process exit with an error code (1) on
        // lint error,return the stream and pipe to failAfterError 
        // last.
        .pipe(eslint.failAfterError());
});

gulp.task('default',['lint'],function () {
    // This will only run if the lint task is successful...
});

大佬总结

以上是大佬教程为你收集整理的node.js – 如何使用gulp-eslint修复文件?全部内容,希望文章能够帮你解决node.js – 如何使用gulp-eslint修复文件?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。