Created
December 5, 2017 17:00
-
-
Save AdamMarsden/4f1c9bcb146f2331704656d3cc380230 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sassLint = require('gulp-sass-lint'); | |
gulp.task('sass-lint', function () { | |
return gulp.src([ | |
'sass/**/*.scss', | |
'!sass/dont-watch-this.scss' | |
]) | |
.pipe(sasslint()) | |
.pipe(sasslint.format()) | |
.pipe(sasslint.failOnError()) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment