嗨,我正在尝试在一个小型 Angular 2 应用程序上使用 gulp 运行 tslint 任务,但它似乎不起作用。这是我到目前为止所拥有的:
这是我的 gulpFile:
const gulp = require('gulp');
const tslint = require('gulp-tslint');
gulp.task('tslint', () => {
return gulp.src("app/**/*.ts")
.pipe(tslint({ configuration: "tslint.json" }))
.pipe(tslint.report('verbose'));
});
为了绝对确定我得到了错误,我在 tslist.json 中设置了以下选项:"max-line-length": [ true, 5 ]
当我运行此任务时,我得到以下信息:
[10:29:54] Using gulpfile ~\Desktop\InovationWeek\InovationWeek\Gulpfile.js
[10:29:54] Starting 'tslint'...
Process terminated with code 1.
它没有说明它发现了哪些 linting 错误,只是进程以代码 0 终止。
我究竟做错了什么?