From c76d12ded593d897f9614c56ddf26ee94e05f176 Mon Sep 17 00:00:00 2001 From: Joseph Hale Date: Mon, 23 Jun 2025 08:39:53 -0700 Subject: [PATCH] style: Add ESLint's preferred punctuation to `babel.config.js` --- babel.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/babel.config.js b/babel.config.js index 1abe903..aa17008 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,8 +1,8 @@ -const ReactCompilerConfig = {} +const ReactCompilerConfig = {}; module.exports = { presets: ['module:@react-native/babel-preset'], plugins: [ ['babel-plugin-react-compiler', ReactCompilerConfig], // must run first! - ] + ], }; -- 2.51.2