]> git.proxmox.com Git - mirror_frr.git/blob - .github/commitlint.config.js
Merge pull request #12728 from opensourcerouting/feature/bgp_neighbor_path-attribute_...
[mirror_frr.git] / .github / commitlint.config.js
1 module.exports = {
2 rules: {
3 'header-max-length': [2, 'always', 72],
4 'type-case': [2, 'always', 'lower-case'],
5 'type-empty': [2, 'never'],
6 'type-enum': [
7 2,
8 'always',
9 [
10 'babeld',
11 'bfdd',
12 'bgpd',
13 'build',
14 'doc',
15 'docker',
16 'eigrpd',
17 'fpm',
18 'isisd',
19 'ldpd',
20 'lib',
21 'multi',
22 'nhrpd',
23 'ospf6d',
24 'ospfd',
25 'pbrd',
26 'pimd',
27 'pim6d',
28 'ripd',
29 'ripngd',
30 'sharpd',
31 'staticd',
32 'tests',
33 'tools',
34 'vtysh',
35 'vrrpd',
36 'yang',
37 'zebra',
38 'all',
39 ],
40 ],
41 'subject-empty': [2, 'never'],
42 'subject-full-stop': [2, 'never', '.'],
43 'subject-case': [2, 'always', 'sentence-case'],
44 },
45 };