mirror of
https://github.com/reconurge/flowsint.git
synced 2026-03-08 23:04:17 -05:00
25 lines
760 B
JavaScript
25 lines
760 B
JavaScript
export default {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [
|
|
2,
|
|
'always',
|
|
[
|
|
'feat', // New feature
|
|
'fix', // Bug fix
|
|
'docs', // Documentation only changes
|
|
'style', // Code style changes (formatting, etc)
|
|
'refactor', // Code refactoring
|
|
'perf', // Performance improvements
|
|
'test', // Adding or updating tests
|
|
'build', // Build system or dependencies
|
|
'ci', // CI/CD changes
|
|
'chore', // Other changes that don't modify src
|
|
'revert', // Revert previous commit
|
|
],
|
|
],
|
|
'scope-case': [2, 'always', 'kebab-case'],
|
|
'subject-case': [0], // Allow any case for subject
|
|
},
|
|
};
|