Gulp eslint找不到我的.eslintrc文件

时间:2016-03-21 16:35:59

标签: javascript node.js gulp eslint

我的.eslintrc

似乎找不到我的gulp-eslint文件

我定义了lint任务:

gulp.task('lint', function () {
  gulp.src(['src/**/*.js', 'src/**/*.jsx'])
  .pipe(eslint())
  .pipe(eslint.format());
})

它会运行,但不会显示任何错误。

我的.eslintrc文件在src文件夹中定义。我试图将它移动到我的项目的根文件夹,但它没有改变任何东西。

这是一个非常简单的文件:

{
  "parser": "babel-eslint",
  "ecmaFeatures": {
    "classes": true,
    "jsx": true
  },
  "plugins": [
    "react"
  ],

  "extends": "eslint-config-airbnb"
}

当我在终端中运行eslint src时,我得到了一堆eslint错误,这很好。

知道什么不能正常工作吗?

2 个答案:

答案 0 :(得分:1)

根据docs,您需要在管道中出错时失败。

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(['**/*.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())
        // eslint.format() outputs the lint results to the console.
        // Alternatively use eslint.formatEach() (see Docs).
        .pipe(eslint.format())
        // To have the process exit with an error code (1) on
        // lint error, return the stream and pipe to failAfterError last.
        .pipe(eslint.failAfterError());
});

答案 1 :(得分:0)

简单来说,documentation对于使用配置文件,它们的使用优先级以及它们的位置非常有用和简洁。您还可以添加路径以指定特定管道的配置文件的位置:

gulp.task('lint', function () {
  gulp.src(['src/**/*.js', 'src/**/*.jsx'])
  .pipe(eslint({ configFile: '.eslintrc'}))
  .pipe(eslint.format())
  .pipe(eslint.failAfterError())
})

在gulp-eslint documentation中,应该注意使用failOnError()和failAfterError()方法是可取的,因为任务/流已停止,因此没有无效代码写入输出。

如果您不使用,则仍然会捕获错误,但仅在控制台输出中显示。因此,依赖于您的任务流和设计,目标文件仍然可以写入,但您可以方便地立即纠正错误并继续执行,而无需再次启动管道处理/监视任务。另一种方法是查看gulp-plumber或其他一些方法,使您不会违反gulp watch任务,但也不会编写包含未通过linting验证的代码的文件。