From 51e95d93d7ad388882a818cfe137376f591c2995 Mon Sep 17 00:00:00 2001 From: Max Eliseev Date: Tue, 22 Nov 2022 20:08:16 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=BF=D0=BE=D1=84=D0=B8=D0=BA=D1=88?= =?UTF-8?q?=D0=B5=D0=BD=D0=BE=20=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BB=D0=BE?= =?UTF-8?q?=20commitlint,=20=D1=82=D0=B5=D0=BF=D0=B5=D1=80=D1=8C=20=D0=BC?= =?UTF-8?q?=D0=BE=D0=B6=D0=BD=D0=BE=20=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=B2?= =?UTF-8?q?=D0=B0=D1=82=D1=8C=20=D0=BA=D0=BE=D0=BC=D0=BC=D0=B8=D1=82=D1=8B?= =?UTF-8?q?=20=D1=82=D0=B8=D0=BF=D0=B0=20wip?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .czrc | 4 ++-- commitlint.config.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.czrc b/.czrc index eddc3a0..b69435a 100644 --- a/.czrc +++ b/.czrc @@ -30,8 +30,8 @@ "revert": { "description": "revert: Откат изменений" }, - "WIP": { - "description": "WIP: Незавершенная работа" + "wip": { + "description": "wip: Незавершенная работа" } }, "scopes": [ diff --git a/commitlint.config.js b/commitlint.config.js index 850e3a3..3b40a87 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -2,6 +2,6 @@ module.exports = { extends: ["@commitlint/config-conventional"], plugins: ["commitlint-plugin-function-rules"], rules: { - "type-enum": [2, "always", ["feat", "fix", "docs", "style", "refactor", "test", "revert", "chore", "WIP"]] + "type-enum": [2, "always", ["feat", "fix", "docs", "style", "refactor", "test", "revert", "chore", "wip"]] } }