aboutsummaryrefslogtreecommitdiff
path: root/commitlint.config.js
blob: b7c1e5aa12fb8c920aa5de0f18dd6b6cc7ee4c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* eslint-env node */

"use strict";

const config = require("./.cz.json");

module.exports = {
    extends: ["@commitlint/config-conventional"],
    rules: {
        "header-max-length": [1, "always", config.maxHeaderWidth], /* Warning */
        "body-max-line-length": [1, "always", config.maxLineWidth], /* Warning */
        "signed-off-by": [2, "always", "Signed-off-by:"] /* Error */
    }
};