mirror of
https://github.com/scratchfoundation/eslint-config-scratch.git
synced 2025-07-22 20:18:51 -04:00
11 lines
420 B
JavaScript
11 lines
420 B
JavaScript
|
// 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 {
|
||
|
extends: ['@commitlint/config-conventional'],
|
||
|
ignores: [message => message.startsWith('chore(release):')]
|
||
|
};
|