MCPcopy Create free account
hub / github.com/conventional-changelog/commitlint / UserConfig

Interface UserConfig

@commitlint/types/src/load.ts:17–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15}
16
17export interface UserConfig {
18 extends?: string | string[];
19 formatter?: string;
20 rules?: Partial<RulesConfig>;
21 parserPreset?: string | ParserPreset | Promise<ParserPreset>;
22 ignores?: ((commit: string) => boolean)[];
23 defaultIgnores?: boolean;
24 plugins?: (string | Plugin)[];
25 helpUrl?: string;
26 prompt?: UserPromptConfig;
27 [key: string]: unknown;
28}
29
30export type QualifiedRules = Partial<RulesConfig<RuleConfigQuality.Qualified>>;
31

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected