From f69ca085dbfca2253404574dcdc4dc6c2aaa35c0 Mon Sep 17 00:00:00 2001 From: Brad Dunbar Date: Wed, 1 Oct 2025 11:48:15 -0400 Subject: [PATCH] ESLint: Ignore .bundle directory (#36321) --- eslint.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index 883ddf5fce..5942219ced 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -179,6 +179,7 @@ export default tseslint.config([ 'tmp/**/*', 'vendor/**/*', 'streaming/**/*', + '.bundle/**/*', ]), react.configs.flat.recommended, react.configs.flat['jsx-runtime'],