diff --git a/packages/utils/src/ts-eslint/Parser.ts b/packages/utils/src/ts-eslint/Parser.ts index 3ab2146121b..c07485c0610 100644 --- a/packages/utils/src/ts-eslint/Parser.ts +++ b/packages/utils/src/ts-eslint/Parser.ts @@ -21,7 +21,7 @@ export namespace Parser { * This type intended to relax validation of configs so that parsers that have * different AST types or scope managers can still be passed to configs * - * See also LooseRuleDefinition, LooseProcessorModule + * @see {@link LooseRuleDefinition}, {@link LooseProcessorModule} */ export type LooseParserModule = | { diff --git a/packages/utils/src/ts-eslint/Processor.ts b/packages/utils/src/ts-eslint/Processor.ts index b7ef74e02fc..513c6388232 100644 --- a/packages/utils/src/ts-eslint/Processor.ts +++ b/packages/utils/src/ts-eslint/Processor.ts @@ -51,7 +51,7 @@ export namespace Processor { * This type intended to relax validation of configs so that parsers that have * different AST types or scope managers can still be passed to configs * - * See also LooseRuleDefinition, LooseParserModule + * @see {@link LooseRuleDefinition}, {@link LooseParserModule} */ export interface LooseProcessorModule { /** diff --git a/packages/utils/src/ts-eslint/Rule.ts b/packages/utils/src/ts-eslint/Rule.ts index 2ba4978aefc..c1824060d6e 100644 --- a/packages/utils/src/ts-eslint/Rule.ts +++ b/packages/utils/src/ts-eslint/Rule.ts @@ -635,7 +635,7 @@ export interface RuleModule< export type AnyRuleModule = RuleModule; /** - * A loose definition of the RuleModule type for use with configs. This type + * A loose definition of the RuleModule type for use with configs. This type is * intended to relax validation of types so that we can have basic validation * without being overly strict about nitty gritty details matching. * @@ -644,7 +644,7 @@ export type AnyRuleModule = RuleModule; * super strict validation in a config - a loose shape match is "good enough" to * help validate the config is correct. * - * See also LooseParserModule, LooseProcessorModule + * @see {@link LooseParserModule}, {@link LooseProcessorModule} */ export type LooseRuleDefinition = // TODO - ESLint v9 will remove support for RuleCreateFunction