chore: standardize ESM-first architecture and resolve all type/test/lint errors

This commit is contained in:
2026-02-11 01:33:44 +01:00
parent b6fbead807
commit 5b4d3ebb41
8 changed files with 181 additions and 15 deletions

10
commitlint.config.cjs Normal file
View File

@@ -0,0 +1,10 @@
/* eslint-disable no-undef */
/* eslint-env node */
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'header-max-length': [2, 'always', 500],
'subject-case': [0],
'subject-full-stop': [0],
},
};