19 lines
514 B
JavaScript
19 lines
514 B
JavaScript
// Copyright IBM Corp. 2018,2020. All Rights Reserved.
|
|
// Node module: loopback4-example-shopping-monorepo
|
|
// This file is licensed under the MIT License.
|
|
// License text available at https://opensource.org/licenses/MIT
|
|
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
extends: [
|
|
'@commitlint/config-conventional',
|
|
],
|
|
rules: {
|
|
'header-max-length': [2, 'always', 100],
|
|
'body-leading-blank': [2, 'always'],
|
|
'footer-leading-blank': [0, 'always'],
|
|
'signed-off-by': [2, 'always', 'Signed-off-by:'],
|
|
},
|
|
};
|