0
我試圖應用時尚的錯誤日誌到coffeelint,但它似乎並沒有正確顯示。我收到以下錯誤,當我嘗試應用插件試圖讓gulp coffeelint與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())
});