mirror of
https://github.com/appium/appium.git
synced 2026-01-08 03:10:02 -06:00
This disables the rules which: - require specific capitalization - disallow the use of periods in subjects - warn if there's no leading blank line in the commit body because the above are dumb
12 lines
270 B
JavaScript
12 lines
270 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'body-leading-blank': [0],
|
|
'body-max-line-length': [0],
|
|
'footer-max-line-length': [0],
|
|
'header-max-length': [0],
|
|
'subject-case': [0],
|
|
'subject-full-stop': [0],
|
|
},
|
|
};
|