こんにちは、ソリューションをリントし、リント プロセスでエラーが発生した後に失敗する次の gulp タスクがあります。テキストで失敗し、ヒープに落ちるだけでなく、これを実装する方法がわかりません。どんな助けでも大歓迎です。
gulp.task('lint-solution', function(done){
log('Linting solution')
return gulp.src(['../CRMPortal/**/*.js','../Common/**/*.js','!../Common/scripts/**/*','!../node_modules/**','!../CRMPortal/dist/**','!../CRMPortal/gulpfile.js'])
.pipe($.eslint({configFile: ".eslintrc.json"}))
.pipe($.eslint.format(
reporter, function(results){
fs.writeFileSync(path.join(__dirname,'report.html'), results);
}
))
.pipe($.eslint.failAfterError()); <-- I want text I provide to be printed on error here should that be the case , not just the error
})
現時点で(明らかに)私が得るのは次のとおりです:
Message:
Failed with 1 error