From fa72215c30a296ad67770f73dcc47178cc94ee19 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Wed, 17 Jul 2024 14:41:53 +0800 Subject: [PATCH] Enable more checks --- .htmlvalidate.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.htmlvalidate.json b/.htmlvalidate.json index 6fe07de..74f3f41 100644 --- a/.htmlvalidate.json +++ b/.htmlvalidate.json @@ -1,10 +1,13 @@ { "extends": [ + "html-validate:document", "html-validate:recommended" ], "rules": { + "heading-level": "off", "no-inline-style": "off", - "valid-id": ["error", {"relaxed": true}], + "require-sri": ["off", { "target": "crossorigin" }], + "valid-id": ["error", { "relaxed": true }], "wcag/h71": "off" } }