gulp-htmlhint icon indicating copy to clipboard operation
gulp-htmlhint copied to clipboard

Results 16 gulp-htmlhint issues
Sort by recently updated
recently updated
newest added

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

I have tried 3 different ways of declaring custom rules, neither of them worked. Referencing a `.htmlhintrc` file: ``` gulp.task('htmllint', function() { return gulp.src(settings.app.base + "/index.html") .pipe(htmllint('.htmlhintrc', htmllintReporter)); }); ```...

htmlhintrc [states](https://github.com/yaniswang/HTMLHint/wiki/Usage#about-rules) that if a rule is undefined, it will use the default ruleset. However, in gulp-htmlhint, the rules that are set to false are [being removed](https://github.com/astronomersiva/gulp-htmlhint/blob/master/index.js#L88). This results in...

Thank you for your amazing plugin! When I make it works, the HTML validation routine becomes to past. The following code is working in `gulp#4.0`: ``` gulp.task('Development Build', gulp.series( gulp.parallel('pug',...

Currently, if a path to the htmlhintrc is supplied, "./" is appended to the path name, breaking absolute paths. Can this be removed?

enhancement

[Gulp-notify](https://www.npmjs.com/package/gulp-notify) allows to show system notifications. I wonder if it's possible to output htmlhint into gulp-notify?

Is there an available option for failOnError ? It fails after Warning rules also. Thanks.

With htmlhint 0.9.12, it's possible to load custom rules giving a directory option ``` htmlhint --plugin ./plugins/ --rules test-rule ``` In the next release, this option will be renamed to...

If a `.htmlhintrc` file is present, it should be used by default without the need to configure it.

enhancement

currently the `.htmlhintrc` needs to be specified relative to the project root. Maybe something like this would be much nicer: - Try to autodetect file based on the current filepath...

enhancement