From fb2cc56a71beaf3d6d074fc62c0662b58efde0f7 Mon Sep 17 00:00:00 2001 From: Pablo Giraud-Carrier Date: Fri, 5 Jun 2026 18:41:01 +0200 Subject: [PATCH] chore: gitignore regenerated .eslintrc.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit expo-module-scripts' configure step (run by the prepare lifecycle) recreates a legacy .eslintrc.js from its template whenever the file is missing. The project uses ESLint flat config (eslint.config.js), so the regenerated file is inert and not part of the published tarball — ignore it to keep it out of git. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 8cb8134..b6cebfe 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,6 @@ ios/Pods/ # Android .gradle/ + +# Legacy ESLint config regenerated by `expo-module prepare`; we use flat config (eslint.config.js) +.eslintrc.js