@kv-systems/ng-packagr
Version:
Compile and package Angular libraries in Angular Package Format (APF)
26 lines (25 loc) • 446 B
JavaScript
module.exports = {
extends: ['@commitlint/config-angular'],
rules: {
'subject-max-length': [2, 'always', 120],
'scope-enum': [2, 'always', []],
'scope-empty': [2, 'always'],
'type-enum': [
2,
'always',
[
'build',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'release',
'revert',
'style',
'test'
]
]
}
};