mirror of
https://github.com/logos-storage/codex-factory.git
synced 2026-01-02 21:13:09 +00:00
7 lines
180 B
JavaScript
7 lines
180 B
JavaScript
|
|
module.exports = {
|
||
|
|
extends: ['@commitlint/config-conventional'],
|
||
|
|
rules: {
|
||
|
|
'body-max-line-length': [0, 'always', Infinity], // disable commit body length restriction
|
||
|
|
},
|
||
|
|
}
|