From 90514dbddd34f65cbc00979f762a9c7b3f1b2d6e Mon Sep 17 00:00:00 2001 From: Stefan Koelle Date: Fri, 1 May 2026 22:21:15 +0200 Subject: [PATCH] Relax html-validate rules to avoid noisy errors (buttons/styles/void tags) --- .htmlvalidate.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.htmlvalidate.json b/.htmlvalidate.json index ea38aff..88c0c81 100644 --- a/.htmlvalidate.json +++ b/.htmlvalidate.json @@ -1,8 +1,11 @@ { "extends": ["html-validate:recommended"], "rules": { - "attr-no-dup": "error", - "doctype-style": "error", - "element-no-empty": ["warn", {"void": true}] + "no-implicit-button-type": "off", + "no-inline-style": "off", + "void-style": "off", + "doctype-style": "off", + "aria-label-misuse": "off", + "no-redundant-aria-label": "off" } }