From 63f9129d53ac8f4c1ab9d9c77d0b2713b3efc002 Mon Sep 17 00:00:00 2001 From: Anton Tranelis Date: Tue, 5 Aug 2025 09:35:40 +0200 Subject: [PATCH] fix: add eslint disables for localStorage utility --- lib/src/Utils/localStorage.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/src/Utils/localStorage.ts b/lib/src/Utils/localStorage.ts index 47dbc2d2..57ff58ac 100644 --- a/lib/src/Utils/localStorage.ts +++ b/lib/src/Utils/localStorage.ts @@ -1,3 +1,6 @@ +/* eslint-disable no-catch-all/no-catch-all */ +/* eslint-disable no-console */ + /** * Safe localStorage utility that handles SecurityError gracefully * when localStorage is not available (e.g., private browsing mode)