interface ConfiguredLintingRule<
    Name extends LintingRuleNames = LintingRuleNames,
> {
    config: DeepPartial<LintingRuleConfig<Name>>;
    name: Name;
}

Type Parameters

Properties

Properties

config: DeepPartial<LintingRuleConfig<Name>>
name: Name