Answer the question
In order to leave comments, you need to log in
Gulp-scss-lint does not respond to errors. How to set up correctly?
Task:
gulp.task('scsslint', function() {
gulp.src('/src/style/main.scss')
.pipe(scsslint({
'config': '.scss-lint.yml',
'reporterOutput': 'scss-lint-report.xml',
'colorizeOutput': true
}));
});
Answer the question
In order to leave comments, you need to log in
Try this simple code first:
gulp.task('stylesLint', function () {
gulp.src('/src/style/main.scss')
.pipe(scsslint({
'config': 'lint.yml'
}));
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question