๐Ÿ“ฆ theajack / type

๐Ÿ“„ commitlint.config.js ยท 11 lines
1
2
3
4
5
6
7
8
9
10
11module.exports = {
    extends: ['@commitlint/config-conventional'],
    rules: {
        'type-enum': [2, 'always', [
            'feat', 'fix', 'docs', 'style', 'refactor', 'perf', 'test', 'build', 'ci', 'chore', 'revert'
        ]],
        'subject-full-stop': [0, 'never'],
        'subject-case': [0, 'never']
    }
};