Add HTML linting CI (html-validate) and config

This commit is contained in:
Stefan Koelle
2026-05-01 22:14:17 +02:00
parent 11a5f62d68
commit 2fd76f0f6b
3 changed files with 40 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
{
"extends": ["html-validate:recommended"],
"rules": {
"attr-no-dup": "error",
"doctype-style": "error",
"element-no-empty": ["warn", {"void": true}]
}
}