gulp-bemlint-html
v1.0.0
Published
gulp plugin to bemlint html files
Downloads
4
Readme
gulp-bemlint-html
gulp plugin to bemlint html files using https://github.com/DesTincT/bemlint
gulp.task('html', () => {
const bemlintHtml = require('gulp-bemlint-html');
return gulp.src('**/*.html')
.pipe(bemlintHtml())
});