From c5350b6b60b503055f8fadd60ecda54cee6e779f Mon Sep 17 00:00:00 2001 From: Administrator Date: Fri, 7 Aug 2026 18:22:42 +0200 Subject: [PATCH] chore(lint): recognize Node performance global Declare the runtime-provided performance API as read-only so the full release lint gate validates existing timing instrumentation without altering production behavior. --- eslint.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index a080f80..6b8f31e 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -55,6 +55,7 @@ const nodeGlobals = { fetch: 'readonly', crypto: 'readonly', structuredClone: 'readonly', + performance: 'readonly', }; export default [