Skip to content

Commit 51e95d9

Browse files
committed
fix: пофикшено правило commitlint, теперь можно создавать коммиты типа wip
1 parent bec2f46 commit 51e95d9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.czrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"revert": {
3131
"description": "revert: Откат изменений"
3232
},
33-
"WIP": {
34-
"description": "WIP: Незавершенная работа"
33+
"wip": {
34+
"description": "wip: Незавершенная работа"
3535
}
3636
},
3737
"scopes": [

commitlint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module.exports = {
22
extends: ["@commitlint/config-conventional"],
33
plugins: ["commitlint-plugin-function-rules"],
44
rules: {
5-
"type-enum": [2, "always", ["feat", "fix", "docs", "style", "refactor", "test", "revert", "chore", "WIP"]]
5+
"type-enum": [2, "always", ["feat", "fix", "docs", "style", "refactor", "test", "revert", "chore", "wip"]]
66
}
77
}

0 commit comments

Comments
 (0)