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