mirror of
https://gitee.com/ByteDance/flowgram.ai.git
synced 2025-07-07 17:43:29 +08:00
* chore: setup some common config * chore: setup some common config * chore: setup commit lint
15 lines
275 B
JavaScript
15 lines
275 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'header-max-length': [2, 'always', 150],
|
|
'subject-full-stop': [0, 'never'],
|
|
'subject-case': [
|
|
2,
|
|
'never',
|
|
[
|
|
'upper-case', // UPPERCASE
|
|
],
|
|
],
|
|
},
|
|
};
|