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