-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
39 lines (35 loc) · 887 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const conventional = require('@commitlint/config-conventional');
const fs = require('fs');
const path = require('path');
const { flatten, keys, mapObjIndexed, merge } = require('ramda');
const { patterns } = JSON.parse(
fs.readFileSync(
process.env.NODE_ENV === 'test'
? './__tests__/.commitlint-patterns.json'
: path.resolve(process.cwd(), '.commitlint-patterns.json'),
'utf-8',
),
);
const config = {
settings: {
scope: {
enumerables: mapObjIndexed(
val => ({
description: val,
}),
patterns.components,
),
},
},
rules: merge(conventional.rules, {
'scope-enum': () => {
const scopes = flatten([
patterns.system,
patterns.packages,
keys(patterns.components),
]);
return [2, 'always', scopes.concat(['system'])];
},
}),
};
module.exports = config;