mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-01-31 19:53:07 +08:00
Adds GitHub Actions workflows for CI, maintenance, and releases with multi-platform testing matrix.
12 lines
371 B
JavaScript
12 lines
371 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [2, 'always', [
|
|
'feat', 'fix', 'docs', 'style', 'refactor',
|
|
'perf', 'test', 'chore', 'ci', 'build', 'revert'
|
|
]],
|
|
'subject-case': [2, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']],
|
|
'header-max-length': [2, 'always', 100]
|
|
}
|
|
};
|