From 61fe00cf5b6eb144e23e48399c89648fc0d1e222 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Fri, 16 May 2025 15:58:35 -0500 Subject: [PATCH] Disabled document.cookie linter The replacement, CookieStore isn't accessible on all browsers at this time, nor should we assume we always have access to secure environments. --- biome.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/biome.json b/biome.json index 5cf9a9c90..75ad07db8 100644 --- a/biome.json +++ b/biome.json @@ -38,6 +38,9 @@ "useExportType": "error", "noUselessElse": "error", "useShorthandFunctionType": "error" + }, + "suspicious": { + "noDocumentCookie": "off" } } },