MYNT-EYE-S-SDK/.commitlintrc.js

12 lines
318 B
JavaScript
Raw Normal View History

2018-12-20 03:13:57 +02:00
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [2, 'always', [
"feat", "fix", "docs", "style", "refactor", "perf", "test", "build", "ci", "chore", "revert"
]],
'scope-empty': [2, 'never'],
'subject-full-stop': [0, 'never'],
'subject-case': [0, 'never']
}
};