Skip to content

Commit

Permalink
improv(commitMsg): enforceConvCommits disabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser committed Oct 27, 2023
1 parent 9283b9f commit 4da8fe9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ local defaultConfig = {
-- in this message. `false` to disallow empty commit messages.
emptyFillIn = "chore", ---@type string|false

-- disallow commit messages without a conventinal commit keyword
-- disallow commit messages without a conventional commit keyword
enforceConvCommits = {
enabled = true,
enabled = false,
-- stylua: ignore
keywords = {
"chore", "build", "test", "fix", "feat", "refactor", "perf",
Expand Down
4 changes: 2 additions & 2 deletions lua/tinygit/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ local defaultConfig = {
-- this message. Set to `false` to disallow empty commit messages.
emptyFillIn = "chore", ---@type string|false

-- disallow commit messages without a conventinal commit keyword
-- disallow commit messages without a conventional commit keyword
enforceConvCommits = {
enabled = true,
enabled = false,
-- stylua: ignore
keywords = {
"chore", "build", "test", "fix", "feat", "refactor", "perf",
Expand Down

0 comments on commit 4da8fe9

Please sign in to comment.