我正在尝试将时尚的错误日志应用到coffeelint,但它似乎没有正确显示。我尝试应用插件时出现以下错误
Error in plugin 'gulp-coffeelint'
Message:
coffeelint-stylish is not a valid reporter
我的gulpfile顶部需要两个插件,如下所示.. 我显然安装了它们。
var gulp = require('gulp');
var gutil = require('gulp-util');
var coffeelint = require('gulp-coffeelint');
var reporter = require('coffeelint-stylish').reporter;
这是我的Gulpfile.js文件中的任务
gulp.task('coffeelint', function () {
gulp.src(coffeeSources)
.pipe(coffeelint())
.pipe(coffeelint-stylish.reporter())
});
答案 0 :(得分:0)
我明白了......
gulp.task('coflint', function () { gulp.src('components/coffee/*.coffee') .pipe(coffeelint()) .pipe(coffeelint.reporter('default')) });
'默认'使用coffeelint-stylish