mirror of
https://github.com/nick-fields/retry.git
synced 2026-02-09 14:48:02 +00:00
* patch: setup prettier * patch: move .commitlintrc.js to .config * patch: config lint-staged and update husky * patch: configure eslint as well
11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [
|
|
2,
|
|
'always',
|
|
['feat', 'fix', 'docs', 'style', 'refactor', 'test', 'revert', 'patch', 'minor', 'major'],
|
|
],
|
|
},
|
|
};
|