tecvan be5d086811
chore: setup some common config (#66)
* chore: setup some common config

* chore: setup some common config

* chore: setup commit lint
2025-03-20 14:32:11 +08:00

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
],
],
},
};