UNPKG

315 BJavaScriptView Raw
1const [, , typeEnum] = require('@commitlint/config-angular').rules['type-enum'];
2
3module.exports = {
4 extends: ['@commitlint/config-angular'],
5 rules: {
6 'header-max-length': [0, 'always', 106],
7 'type-enum': [2, 'always', [...typeEnum, 'chore', 'ref', 'add']],
8 'scope-case': [0, 'always', []],
9 },
10};