UNPKG

207 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
14export default {
15 rules: {
16 'type-enum': [2, 'always', types],
17 },
18 value: () => types,
19};