mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 05:37:21 +00:00
44 lines
782 B
JavaScript
44 lines
782 B
JavaScript
export default {
|
|
extends: ['@commitlint/config-conventional'],
|
|
formatter: '@commitlint/format',
|
|
ignores: [
|
|
/** @param {string} message */
|
|
(message) => {
|
|
const lower = message.toLowerCase().trim();
|
|
return ['wip'].some((word) => lower.startsWith(word));
|
|
},
|
|
],
|
|
rules: {
|
|
'scope-enum': [
|
|
2,
|
|
'always',
|
|
[
|
|
'build',
|
|
'cd',
|
|
'ci',
|
|
'claude',
|
|
'cli',
|
|
'core',
|
|
'design',
|
|
'element',
|
|
'docs',
|
|
'html',
|
|
'icons',
|
|
'packages',
|
|
'plan',
|
|
'react-native',
|
|
'react',
|
|
'rfc',
|
|
'root',
|
|
'sandbox',
|
|
'site',
|
|
'skin',
|
|
'spf',
|
|
'store',
|
|
'test',
|
|
'utils',
|
|
],
|
|
],
|
|
},
|
|
};
|