我试图忽略StandardJS中的某些规则,但在使用gulp-standard时我无法使其工作。
我是否必须在JavaScript文件中编写异常?我想在我的包文件中指定要忽略的内容。
这可能吗?我怎么能在我的gulpfile中做到这一点?
gulp.task('lint', function () {
return gulp.src(jsWatchPath)
.pipe(standard())
.pipe(standard.reporter('default', {
breakOnError: true,
quiet: true,
showRuleNames: true,
showFilePath: false
}))
});
答案 0 :(得分:0)
gulp-standard包使用StandardJS's Node.js API。使用文档将您的选项作为对象传递。
否则,在您项目的根目录中使用您自己的ESLint configurations 创建一个名为 .eslintrc 的文件(StandardJS在引擎盖下使用ESLint)