feather/commitlint.config.js

9 lines
191 B
JavaScript
Raw Normal View History

2017-11-20 05:01:04 +03:00
module.exports = {
extends: ['@commitlint/config-conventional'],
2017-11-20 05:01:04 +03:00
rules: {
'scope-case': [0],
'subject-case': [2, 'always', 'sentence-case'],
'header-max-length': [0],
2017-11-20 05:01:04 +03:00
},
};