From 076c4bd34b8b30f5ba6a80be1741ed2330a0b2fb Mon Sep 17 00:00:00 2001 From: Alex Hamlin Date: Sun, 8 Sep 2024 16:27:58 -0700 Subject: [PATCH] Use plain .js for the ESLint configuration Since we set "type": "module" in package.json, Node.js doesn't necessarily need the .mjs extension to know this is a module. Let's go ahead and assume we have no CommonJS modules anywhere in this project. --- client/{eslint.config.mjs => eslint.config.js} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename client/{eslint.config.mjs => eslint.config.js} (100%) diff --git a/client/eslint.config.mjs b/client/eslint.config.js similarity index 100% rename from client/eslint.config.mjs rename to client/eslint.config.js