├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── Changelog.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── invalid.html ├── morethan16 │ ├── test1.html │ ├── test10.html │ ├── test11.html │ ├── test12.html │ ├── test13.html │ ├── test14.html │ ├── test15.html │ ├── test16.html │ ├── test17.html │ ├── test2.html │ ├── test3.html │ ├── test4.html │ ├── test5.html │ ├── test6.html │ ├── test7.html │ ├── test8.html │ └── test9.html ├── test-custom-rule │ ├── htmlhintrc.json │ ├── invalid-custom-rule-2.html │ ├── invalid-custom-rule.html │ └── valid-custom-rule.html └── valid.html ├── htmlhintrc.json └── main.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | temp/ 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/invalid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/invalid.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test1.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test10.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test11.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test12.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test13.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test14.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test15.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test16.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test17.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test2.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test3.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test4.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test5.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test6.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test7.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test8.html -------------------------------------------------------------------------------- /test/fixtures/morethan16/test9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/morethan16/test9.html -------------------------------------------------------------------------------- /test/fixtures/test-custom-rule/htmlhintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "tag-pair": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/test-custom-rule/invalid-custom-rule-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/test-custom-rule/invalid-custom-rule-2.html -------------------------------------------------------------------------------- /test/fixtures/test-custom-rule/invalid-custom-rule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/test-custom-rule/invalid-custom-rule.html -------------------------------------------------------------------------------- /test/fixtures/test-custom-rule/valid-custom-rule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/test-custom-rule/valid-custom-rule.html -------------------------------------------------------------------------------- /test/fixtures/valid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/fixtures/valid.html -------------------------------------------------------------------------------- /test/htmlhintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "tag-pair": false 3 | } -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezoerb/gulp-htmlhint/HEAD/test/main.js --------------------------------------------------------------------------------