我试图忽略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
}))
});