From 2a91edb965f1de1e11aad97d093ebecf0e2831fa Mon Sep 17 00:00:00 2001 From: KernelDeimos Date: Sun, 7 Jul 2024 17:03:34 -0400 Subject: [PATCH] chore: add Buffer to eslint --- eslint.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index 748b1db4..269ef63b 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -55,6 +55,9 @@ export default [ globals: { ...globals.browser, ...globals.commonjs, + // Weird false positives + "Buffer": true, + // Puter Common "puter": true, "i18n": true, "html_encode": true,