-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from eduNEXT/jlc/fix-commit-test-lint
feat: add openedx commitlint.config.js
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// See: https://commitlint.js.org/#/reference-configuration for details | ||
// on the configuration file | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
|
||
rules: { | ||
'type-enum': | ||
[2, 'always', [ | ||
'revert', 'feat', 'fix', 'perf', 'docs', 'test', 'build', 'refactor', 'style', 'chore', 'temp', 'ci', | ||
]], | ||
|
||
// Default rules we want to suppress. The available list of rules can be | ||
// found in https://commitlint.js.org/#/reference-rules | ||
'body-leading-blank': [0, "always"], | ||
'body-max-line-length': [0, "always"], | ||
'footer-max-line-length': [0, "always"], | ||
'footer-leading-blank': [0, "always"], | ||
'subject-case': [0, "always", []], | ||
'subject-full-stop': [0, "never", '.'], | ||
}, | ||
|
||
ignores: [ | ||
// Allow GitHub revert messages, like: | ||
// Revert "introduce a bug" | ||
// Revert "introduce a bug" (#1234) | ||
message => /^Revert ".*"( \(#\d+\))?/.test(message), | ||
|
||
// BTW: commitlint has a built-in list of ignores which are also applied. | ||
// Those include the typical "Merged" messages, so those are implicitly ignored: | ||
// https://github.com/conventional-changelog/commitlint/blob/master/%40commitlint/is-ignored/src/defaults.ts | ||
], | ||
}; |