geojs/commitlint.config.js
David Manthey db243b3597 ci: Add commitlint to the github workflows
Ensure that we are using conventional-commit messages.
2022-06-30 11:53:38 -04:00

25 lines
436 B
JavaScript

module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'subject-case': [0],
// These are the standard values, but are listed here for easier reference
'type-enum': [
2,
'always',
[
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test'
]
]
}
};