From adde1d82fdc531f17a2605423dae5e26c8c1bdfc Mon Sep 17 00:00:00 2001 From: Thomas Rupprecht Date: Tue, 5 Mar 2024 21:52:07 +0100 Subject: [PATCH] refactor(commitlint): convert `.commitlintrc.js` to `commitlint.config.mjs` --- CHANGELOG.md | 4 ++++ .commitlintrc.js => commitlint.config.mjs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) rename .commitlintrc.js => commitlint.config.mjs (72%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 075e475..c20cf3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ All notable changes to this project will be documented in this file. ### 🚜 Refactor - Improve init of popup script and simplify `setLinks` +- Replace `webextension-polyfill` with simple `browser` fallback to `chrome` +- Convert `eslint.config.js` to `eslint.config.mjs` ### 🎨 Styling @@ -32,6 +34,8 @@ All notable changes to this project will be documented in this file. - Update dependencies - Update `husky` - Update dependencies +- Update dprint plugins +- Update dependencies ### ✳️ Other diff --git a/.commitlintrc.js b/commitlint.config.mjs similarity index 72% rename from .commitlintrc.js rename to commitlint.config.mjs index 4c73b71..d5068c9 100644 --- a/.commitlintrc.js +++ b/commitlint.config.mjs @@ -1,3 +1,3 @@ -module.exports = { +export default { extends: ['@commitlint/config-conventional'], };