mirror of
https://gitea.redwind.top/Austin/subscription
synced 2024-11-16 07:42:21 +08:00
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import type { UserConfig } from '@commitlint/types';
|
|
|
|
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'subject-case': [0],
|
|
},
|
|
} as UserConfig;
|