aboutsummaryrefslogtreecommitdiff
path: root/.commitlintrc.js
blob: 3bd68bb6cea1fd3e92cb2ea4b8f4d7f883bf320a (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * Copyright (c) 2021, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

/* eslint-env es6 */

"use strict";

const cz = require("./.cz.json");
const { "trailer-exists": trailerExists } = require("@commitlint/rules").default;

/*
 * Recursively fetch the project's supported scopes from the Commitizen configuration file. We use
 * permit only the blessed scope for each section to encourage developers to use a consistent scope
 * scheme.
 */
function getScopes(sections) {
    return sections.flatMap(section => {
        const scopes = section.scopes;
        const subscopes = getScopes(section.sections || []);

        const scope = scopes ? [ scopes[0] ] : []; /* Only use the blessed scope */

        return scope.concat(subscopes);
    })
};

const scopes = getScopes(cz.sections); /* Contains every blessed scope */

module.exports = {
    extends: ["@commitlint/config-conventional"],
    plugins: [
        {
            rules: {
                "signed-off-by-exists": trailerExists,
                "change-id-exists": trailerExists,
            },
        },
    ],
    rules: {
        "body-max-line-length": [1, "always", cz.maxLineWidth], /* Warning */
        "header-max-length": [1, "always", cz.maxHeaderWidth], /* Warning */

        "change-id-exists": [1, "always", "Change-Id:"], /* Warning */
        "signed-off-by-exists": [1, "always", "Signed-off-by:"], /* Warning */

        "scope-case": [2, "always", "kebab-case"], /* Error */
        "scope-enum": [1, "always", scopes] /* Warning */
    },
};