From 1e1f77ec9442b26752831100465675dde07da8bd Mon Sep 17 00:00:00 2001 From: Joseph Madigan Date: Sat, 27 Jun 2026 21:45:29 -0700 Subject: [PATCH] chore: rename eslint flat config to .mjs so it loads app/eslint.config.js is an ESM flat config (uses import), but app/package.json declares type:commonjs, so Node parses it as CommonJS and ESLint aborts with SyntaxError before lint runs. The .mjs extension forces ESM regardless of the package type, and ESLint auto-discovers eslint.config.mjs, so no script changes are needed. Pure rename; no lint rules changed. --- app/{eslint.config.js => eslint.config.mjs} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename app/{eslint.config.js => eslint.config.mjs} (100%) diff --git a/app/eslint.config.js b/app/eslint.config.mjs similarity index 100% rename from app/eslint.config.js rename to app/eslint.config.mjs