From 1228578858d4a64a4a6f6ce5ed1006eb520bed5f Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Mon, 21 Aug 2023 11:23:50 -0700 Subject: [PATCH] Webhint: disable false-positives (reflows) My site doesn't have any JS and aggressively uses CSS Containment wherever possible, so recalculations aren't a significant performance issue even when a user adds simple userstyles. --- linter-configs/hintrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/linter-configs/hintrc b/linter-configs/hintrc index b3496cf..4ad5556 100644 --- a/linter-configs/hintrc +++ b/linter-configs/hintrc @@ -68,6 +68,8 @@ "https-only": "error", "sri": "error", "detect-css-reflows": "off", + "detect-css-reflows/layout": "off", + "detect-css-reflows/paint": "off", "manifest-exists": "error", "manifest-file-extension": "error", "manifest-is-valid": "error",