mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
30 lines
450 B
JavaScript
30 lines
450 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
extends: [
|
|
'@commitlint/config-conventional', // scoped packages are not prefixed
|
|
],
|
|
rules: {
|
|
'type-enum': [
|
|
2,
|
|
'always',
|
|
[
|
|
'build',
|
|
'chore',
|
|
'ci',
|
|
'docs',
|
|
'feat',
|
|
'fix',
|
|
'perf',
|
|
'proposal',
|
|
'refactor',
|
|
'release',
|
|
'revert',
|
|
'style',
|
|
'test',
|
|
'wip',
|
|
],
|
|
],
|
|
},
|
|
};
|