refactor(commitlint): convert `.commitlintrc.js` to `commitlint.config.mjs`

This commit is contained in:
Thomas Rupprecht 2024-03-05 21:52:07 +01:00
parent 5afec23598
commit adde1d82fd
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -1,3 +1,3 @@
module.exports = {
export default {
extends: ['@commitlint/config-conventional'],
};