Skip to content

Commit

Permalink
fix(commitlint): don't lint subject-case
Browse files Browse the repository at this point in the history
There is no good rule for this that doesn't get in our way.
  • Loading branch information
wraithgar committed Feb 2, 2022
1 parent fb441b1 commit 75cb7e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .commitlintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ module.exports = {
rules: {
'type-enum': [2, 'always', ['feat', 'fix', 'docs', 'chore', 'deps']],
'header-max-length': [2, 'always', 80],
'subject-case': [2, 'always', ['lower-case', 'sentence-case', 'start-case']],
'subject-case': [0, 'always', ['lower-case', 'sentence-case', 'start-case']],
},
}
2 changes: 1 addition & 1 deletion lib/content/commitlintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ module.exports = {
rules: {
'type-enum': [2, 'always', ['feat', 'fix', 'docs', 'chore', 'deps']],
'header-max-length': [2, 'always', 80],
'subject-case': [2, 'always', ['lower-case', 'sentence-case', 'start-case']],
'subject-case': [0, 'always', ['lower-case', 'sentence-case', 'start-case']],
},
}

0 comments on commit 75cb7e6

Please # to comment.