From f0cdea4e35825cd7f31a52b766b2312aec6e2bc4 Mon Sep 17 00:00:00 2001 From: Sean Hatfield Date: Thu, 18 Sep 2025 19:16:52 -0700 Subject: [PATCH] Ignore hasOwnProperty linting errors (#4406) ignore hasOwnProperty linting errors --- eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.js b/eslint.config.js index b6ef861c9..861ff6369 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -46,6 +46,7 @@ export default [ "no-undef": "warn", "no-empty": "warn", "no-extra-boolean-cast": "warn", + "no-prototype-builtins": "off", "prettier/prettier": "warn" } },