Closed D34THWINGS closed 9 years ago
I found a way to make it work :
gulp
.src([config.appStyles])
.pipe(scssLint({
reporterOutputFormat: 'Checkstyle',
reporterOutput: path.resolve(process.cwd(), 'reports/', 'lint/', 'scss.xml')
}))
.pipe(scssLint.failReporter('E'));
Sorry for shouting to quickly and thanks for your work !
I have an error when using failReporter alongside with the Checkstyle reporter :
My gulp code is :
I want my task to fail if I have a lint error in my SCSS but still generating XML reports files for Jenkis, is it possible ? Am I doing it right ?