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.
This commit is contained in:
Administrator 2026-08-07 18:22:42 +02:00
parent 5079be718a
commit c5350b6b60

View File

@ -55,6 +55,7 @@ const nodeGlobals = {
fetch: 'readonly',
crypto: 'readonly',
structuredClone: 'readonly',
performance: 'readonly',
};
export default [