Skip to content

Instantly share code, notes, and snippets.

@colourgarden
Created April 24, 2017 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colourgarden/e9f82816db3f971f9da73053b0eb83af to your computer and use it in GitHub Desktop.
Save colourgarden/e9f82816db3f971f9da73053b0eb83af to your computer and use it in GitHub Desktop.
Avalanche CSS: sample lint gulpfile
var gulp = require('gulp'),
stylelint = require('gulp-stylelint');
gulp.task('lint', function () {
return gulp
.src('*.scss')
.pipe(stylelint({
reporters: [
{ formatter: 'string', console: true }
]
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment