UNPKG

216 BJavaScriptView Raw
1const types = [
2 'build',
3 'ci',
4 'docs',
5 'feat',
6 'fix',
7 'perf',
8 'refactor',
9 'revert',
10 'style',
11 'test',
12];
13
14module.exports.rules = {
15 'type-enum': [2, 'always', types],
16};
17
18module.exports.value = () => types;