mirror of
https://gitea.redwind.top/Austin/subscription
synced 2024-11-16 03:22: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;
|