BorntraegerMarc/ledison-web

View on GitHub
gulp-tasks/htmlhint.js

Summary

Maintainability
A
0 mins
Test Coverage
/*eslint-disable */
'use strict';
/*eslint-enable */

const htmlhint = require('gulp-htmlhint');

module.exports = (gulp, config) => {
    gulp.task('htmlhint', () => gulp
        .src(config.paths.html)
        .pipe(htmlhint('.htmlhintrc'))
        .pipe(htmlhint.reporter())
    );
};