├── .c8rc.json ├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .mocharc.json ├── Gruntfile.js ├── LICENSE ├── README.md ├── lib ├── chunkify.js ├── getThreads.js ├── htmllint.js ├── javaArgs.js ├── javaDetect.js ├── parseErrorMessages.js ├── processErrorMessages.js ├── reporters.js ├── reporters │ ├── checkstyle.js │ ├── json.js │ └── junit.js └── util.js ├── package.json ├── tasks └── html.js └── test ├── checkstyle_test.js ├── chunkify_test.js ├── fixtures ├── invalid-encoding.html ├── invalid.html ├── invalid.php ├── many-files │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-001.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-002.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-003.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-004.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-005.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-006.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-007.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-008.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-009.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-010.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-011.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-012.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-013.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-014.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-015.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-016.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-017.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-018.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-019.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-020.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-021.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-022.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-023.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-024.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-025.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-026.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-027.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-028.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-029.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-030.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-031.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-032.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-033.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-034.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-035.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-036.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-037.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-038.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-039.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-040.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-041.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-042.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-043.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-044.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-045.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-046.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-047.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-048.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-049.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-050.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-051.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-052.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-053.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-054.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-055.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-056.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-057.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-058.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-059.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-060.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-061.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-062.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-063.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-064.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-065.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-066.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-067.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-068.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-069.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-070.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-071.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-072.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-073.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-074.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-075.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-076.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-077.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-078.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-079.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-080.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-081.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-082.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-083.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-084.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-085.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-086.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-087.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-088.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-089.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-090.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-091.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-092.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-093.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-094.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-095.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-096.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-097.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-098.html │ ├── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-099.html │ └── test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-100.html ├── no-doctype.html ├── no-lang.html └── valid.html ├── helpers ├── custom_reporter.js ├── expected_results.js └── run.js ├── html_test.js ├── json_test.js ├── junit_test.js ├── reporters_test.js ├── server └── server_test.js └── threads_test.js /.c8rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/.c8rc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | * text=auto eol=lf 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.tmp/ 2 | /coverage/ 3 | /node_modules/ 4 | -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/.mocharc.json -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/README.md -------------------------------------------------------------------------------- /lib/chunkify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/chunkify.js -------------------------------------------------------------------------------- /lib/getThreads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/getThreads.js -------------------------------------------------------------------------------- /lib/htmllint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/htmllint.js -------------------------------------------------------------------------------- /lib/javaArgs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/javaArgs.js -------------------------------------------------------------------------------- /lib/javaDetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/javaDetect.js -------------------------------------------------------------------------------- /lib/parseErrorMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/parseErrorMessages.js -------------------------------------------------------------------------------- /lib/processErrorMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/processErrorMessages.js -------------------------------------------------------------------------------- /lib/reporters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/reporters.js -------------------------------------------------------------------------------- /lib/reporters/checkstyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/reporters/checkstyle.js -------------------------------------------------------------------------------- /lib/reporters/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/reporters/json.js -------------------------------------------------------------------------------- /lib/reporters/junit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/reporters/junit.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/package.json -------------------------------------------------------------------------------- /tasks/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/tasks/html.js -------------------------------------------------------------------------------- /test/checkstyle_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/checkstyle_test.js -------------------------------------------------------------------------------- /test/chunkify_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/chunkify_test.js -------------------------------------------------------------------------------- /test/fixtures/invalid-encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/invalid-encoding.html -------------------------------------------------------------------------------- /test/fixtures/invalid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/invalid.html -------------------------------------------------------------------------------- /test/fixtures/invalid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/invalid.php -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-001.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-002.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-003.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-003.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-004.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-004.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-005.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-005.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-006.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-006.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-007.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-008.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-008.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-009.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-009.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-010.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-010.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-011.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-012.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-012.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-013.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-013.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-014.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-014.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-015.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-015.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-016.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-017.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-018.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-019.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-020.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-021.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-022.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-023.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-023.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-024.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-025.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-026.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-027.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-027.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-028.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-028.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-029.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-029.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-030.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-030.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-031.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-031.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-032.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-032.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-033.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-033.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-034.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-034.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-035.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-035.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-036.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-036.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-037.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-037.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-038.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-038.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-039.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-039.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-040.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-040.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-041.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-041.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-042.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-042.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-043.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-043.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-044.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-044.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-045.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-045.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-046.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-046.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-047.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-047.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-048.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-048.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-049.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-049.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-050.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-050.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-051.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-051.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-052.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-052.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-053.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-053.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-054.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-054.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-055.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-055.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-056.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-056.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-057.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-057.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-058.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-058.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-059.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-059.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-060.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-060.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-061.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-061.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-062.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-062.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-063.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-063.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-064.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-064.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-065.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-065.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-066.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-066.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-067.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-067.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-068.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-068.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-069.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-069.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-070.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-070.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-071.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-071.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-072.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-072.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-073.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-073.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-074.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-074.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-075.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-075.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-076.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-076.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-077.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-077.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-078.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-078.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-079.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-079.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-080.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-080.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-081.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-081.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-082.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-082.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-083.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-083.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-084.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-084.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-085.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-085.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-086.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-086.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-087.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-087.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-088.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-088.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-089.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-089.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-090.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-090.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-091.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-091.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-092.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-092.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-093.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-093.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-094.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-094.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-095.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-095.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-096.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-096.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-097.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-097.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-098.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-098.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-099.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-099.html -------------------------------------------------------------------------------- /test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-100.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/many-files/test-file-with-a-pretty-long-name-to-reach-maximum-length-sooner-100.html -------------------------------------------------------------------------------- /test/fixtures/no-doctype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/no-doctype.html -------------------------------------------------------------------------------- /test/fixtures/no-lang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/no-lang.html -------------------------------------------------------------------------------- /test/fixtures/valid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/fixtures/valid.html -------------------------------------------------------------------------------- /test/helpers/custom_reporter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = () => { 4 | return ''; 5 | }; 6 | -------------------------------------------------------------------------------- /test/helpers/expected_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/helpers/expected_results.js -------------------------------------------------------------------------------- /test/helpers/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/helpers/run.js -------------------------------------------------------------------------------- /test/html_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/html_test.js -------------------------------------------------------------------------------- /test/json_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/json_test.js -------------------------------------------------------------------------------- /test/junit_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/junit_test.js -------------------------------------------------------------------------------- /test/reporters_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/reporters_test.js -------------------------------------------------------------------------------- /test/server/server_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/server/server_test.js -------------------------------------------------------------------------------- /test/threads_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validator/grunt-html/HEAD/test/threads_test.js --------------------------------------------------------------------------------