mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
18 lines
508 B
JavaScript
18 lines
508 B
JavaScript
|
const Configuration = {
|
||
|
/*
|
||
|
* Resolve and load @commitlint/config-conventional from node_modules.
|
||
|
* Referenced packages must be installed
|
||
|
*/
|
||
|
extends: ['@commitlint/config-conventional'],
|
||
|
/*
|
||
|
* Any rules defined here will override rules from @commitlint/config-conventional
|
||
|
*/
|
||
|
rules: {
|
||
|
'header-max-length': [2, 'always', 72],
|
||
|
'subject-case': [2, 'always', 'sentence-case'],
|
||
|
'scope-enum': [2, 'always'],
|
||
|
},
|
||
|
};
|
||
|
|
||
|
module.exports = Configuration;
|