Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
Score of 1
1 answer
144 views

I have installed the htmlhint library that I can run in my command line over any HTML file like this: npx htmlhint src/test-file.html This lints the file and outputs some HTML errors (if any), for ...
Score of 1
0 answers
348 views

I've just installed htmlhint, and I'm using this .htmlinitrc: { "doctype-first": false } because this project is largely made up of include files, which don't have a DOCTYPE. The problem ...