Skip to content

Instantly share code, notes, and snippets.

@scottaddie
Last active September 14, 2015 14:12
Embed
What would you like to do?
gulpfile.js with the default Bootlint configuration
var gulp = require('gulp');
var bootlint = require('gulp-bootlint');
gulp.task('bootlint', function(){
gulp.src('Views/**/*.cshtml')
.pipe(bootlint());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment