From d405fc09da954fca2a6dd71c256a06965e100015 Mon Sep 17 00:00:00 2001 From: eehkay Date: Sat, 18 Jul 2026 08:15:08 -0700 Subject: [PATCH] chore: rename commitlint config to mjs so esm rules actually load commitlint.config.js uses export default but the package is CommonJS, so the loader silently fell back to an empty ruleset and rejected every commit with empty-rules. The .mjs extension loads under node and bun. Co-Authored-By: Claude Fable 5 --- commitlint.config.js => commitlint.config.mjs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename commitlint.config.js => commitlint.config.mjs (100%) diff --git a/commitlint.config.js b/commitlint.config.mjs similarity index 100% rename from commitlint.config.js rename to commitlint.config.mjs