What problem does it solve? .NET repositories that ship static HTML pages or generated frontend output often lack a focused lint gate for DOM structure, invalid attributes, and basic HTML correctness, letting markup errors slip into deployed pages. ## Core Features & Use Cases - Targeted HTML Linting: Sets up HTMLHint against the right target, whether source templates, built output in dist/ or wwwroot/, or a served URL. - Repeatable Repo-Local Setup: Installs HTMLHint as a dev dependency, adds .htmlhintrc config, and wires narrow scripts into package.json and AGENTS.md. - Boundary Management: Keeps HTMLHint scoped to static HTML correctness while routing JavaScript linting to ESLint and runtime audits to webhint. - Use Case: A team publishes a static site from an ASP.NET project and wants CI to fail on invalid attributes or malformed DOM structure in the generated HTML before deployment. ## Quick Start Add HTMLHint to lint the built static HTML output in this repository and wire it into package.json scripts.