Skip to content

Commit

Permalink
Merge pull request #194 from eduNEXT/jlc/fix-commit-test-lint
Browse files Browse the repository at this point in the history
feat: add openedx commitlint.config.js
  • Loading branch information
johanseto authored Jan 4, 2024
2 parents 1fe8a65 + fc7f341 commit 2fdd2c8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions commitlint.config.js
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
],
};

0 comments on commit 2fdd2c8

Please sign in to comment.