试图让Gulp coffeelint与coffeelint一起使用 - 时尚

时间:2015-05-09 15:04:25

标签: javascript 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())
});

1 个答案:

答案 0 :(得分:0)

我明白了......

gulp.task('coflint', function () { gulp.src('components/coffee/*.coffee') .pipe(coffeelint()) .pipe(coffeelint.reporter('default')) }); 

'默认'使用coffeelint-stylish