KC's Workspace
    Preparing search index...
    type RulesConfig<V = User> = {
        "body-case": CaseRuleConfig<V>;
        "body-empty": RuleConfig<V>;
        "body-full-stop": RuleConfig<V, string>;
        "body-leading-blank": RuleConfig<V>;
        "body-max-length": LengthRuleConfig<V>;
        "body-max-line-length": LengthRuleConfig<V>;
        "body-min-length": LengthRuleConfig<V>;
        "breaking-change-exclamation-mark": CaseRuleConfig<V>;
        "footer-empty": RuleConfig<V>;
        "footer-leading-blank": RuleConfig<V>;
        "footer-max-length": LengthRuleConfig<V>;
        "footer-max-line-length": LengthRuleConfig<V>;
        "footer-min-length": LengthRuleConfig<V>;
        "header-case": CaseRuleConfig<V>;
        "header-full-stop": RuleConfig<V, string>;
        "header-max-length": LengthRuleConfig<V>;
        "header-min-length": LengthRuleConfig<V>;
        "header-trim": RuleConfig<V>;
        "references-empty": RuleConfig<V>;
        "scope-case": CaseRuleConfig<V>;
        "scope-empty": RuleConfig<V>;
        "scope-enum": EnumRuleConfig<V>;
        "scope-max-length": LengthRuleConfig<V>;
        "scope-min-length": LengthRuleConfig<V>;
        "signed-off-by": RuleConfig<V, string>;
        "subject-case": CaseRuleConfig<V>;
        "subject-empty": RuleConfig<V>;
        "subject-full-stop": RuleConfig<V, string>;
        "subject-max-length": LengthRuleConfig<V>;
        "subject-min-length": LengthRuleConfig<V>;
        "trailer-exists": RuleConfig<V, string>;
        "type-case": CaseRuleConfig<V>;
        "type-empty": RuleConfig<V>;
        "type-enum": EnumRuleConfig<V>;
        "type-max-length": LengthRuleConfig<V>;
        "type-min-length": LengthRuleConfig<V>;
        [key: string]: AnyRuleConfig<V>;
    }

    Type Parameters

    Indexable

    Index

    Properties

    "body-case": CaseRuleConfig<V>
    "body-empty": RuleConfig<V>
    "body-full-stop": RuleConfig<V, string>
    "body-leading-blank": RuleConfig<V>
    "body-max-length": LengthRuleConfig<V>
    "body-max-line-length": LengthRuleConfig<V>
    "body-min-length": LengthRuleConfig<V>
    "breaking-change-exclamation-mark": CaseRuleConfig<V>
    "footer-empty": RuleConfig<V>
    "footer-leading-blank": RuleConfig<V>
    "footer-max-length": LengthRuleConfig<V>
    "footer-max-line-length": LengthRuleConfig<V>
    "footer-min-length": LengthRuleConfig<V>
    "header-case": CaseRuleConfig<V>
    "header-full-stop": RuleConfig<V, string>
    "header-max-length": LengthRuleConfig<V>
    "header-min-length": LengthRuleConfig<V>
    "header-trim": RuleConfig<V>
    "references-empty": RuleConfig<V>
    "scope-case": CaseRuleConfig<V>
    "scope-empty": RuleConfig<V>
    "scope-enum": EnumRuleConfig<V>
    "scope-max-length": LengthRuleConfig<V>
    "scope-min-length": LengthRuleConfig<V>
    "signed-off-by": RuleConfig<V, string>
    "subject-case": CaseRuleConfig<V>
    "subject-empty": RuleConfig<V>
    "subject-full-stop": RuleConfig<V, string>
    "subject-max-length": LengthRuleConfig<V>
    "subject-min-length": LengthRuleConfig<V>
    "trailer-exists": RuleConfig<V, string>
    "type-case": CaseRuleConfig<V>
    "type-empty": RuleConfig<V>
    "type-enum": EnumRuleConfig<V>
    "type-max-length": LengthRuleConfig<V>
    "type-min-length": LengthRuleConfig<V>