2023-10-13 08:07:58 +01:00
|
|
|
import type { UserConfig } from '@commitlint/types';
|
|
|
|
import { RuleConfigSeverity } from '@commitlint/types';
|
|
|
|
|
|
|
|
const config: UserConfig = {
|
|
|
|
extends: ['@commitlint/config-conventional'],
|
|
|
|
rules: {
|
|
|
|
'type-enum': [
|
|
|
|
RuleConfigSeverity.Error,
|
|
|
|
'always',
|
|
|
|
[
|
|
|
|
'chore',
|
|
|
|
'ci',
|
|
|
|
'docs',
|
|
|
|
'enhancement',
|
|
|
|
'feat',
|
|
|
|
'fix',
|
|
|
|
'release',
|
|
|
|
'revert',
|
|
|
|
'security',
|
|
|
|
'test',
|
2024-11-28 12:58:55 +02:00
|
|
|
'future',
|
2023-10-13 08:07:58 +01:00
|
|
|
],
|
|
|
|
],
|
|
|
|
},
|
2024-03-20 15:17:42 +01:00
|
|
|
ignores: [
|
|
|
|
(commitMessage) => {
|
|
|
|
// add an exception for github
|
|
|
|
return /^Merge branch '.*' into [a-zA-Z0-9\/\-_]+$/.test(commitMessage);
|
|
|
|
},
|
|
|
|
],
|
2023-10-13 08:07:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|