mirror of
https://github.com/reconurge/flowsint.git
synced 2026-03-21 13:41:32 -05:00
feat: new commit instructions
This commit is contained in:
24
commitlint.config.js
Normal file
24
commitlint.config.js
Normal file
@@ -0,0 +1,24 @@
|
||||
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
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user