eslint-config-scratch/commitlint.config.mjs

11 lines
416 B
JavaScript
Raw Permalink Normal View History

// Do not rename, migrate, or convert this file without checking the `wagoid/commitlint-github-action` documentation!
// `commitlint.config.mjs` is the only supported config file name as of `wagoid/commitlint-github-action@v6`
/**
* @type {import('@commitlint/types').UserConfig}
*/
export default {
2025-03-27 15:35:26 -07:00
extends: ['@commitlint/config-conventional'],
ignores: [message => message.startsWith('chore(release):')],
}