Skip to content

Commit

Permalink
fix: пофикшено правило commitlint, теперь можно создавать коммиты тип…
Browse files Browse the repository at this point in the history
…а wip
  • Loading branch information
mxseev committed Nov 22, 2022
1 parent bec2f46 commit 51e95d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .czrc
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"revert": {
"description": "revert: Откат изменений"
},
"WIP": {
"description": "WIP: Незавершенная работа"
"wip": {
"description": "wip: Незавершенная работа"
}
},
"scopes": [
Expand Down
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"]]
}
}

0 comments on commit 51e95d9

Please sign in to comment.