eslint-plugin-import-x
Version:
Import with sanity.
12 lines (11 loc) • 440 B
TypeScript
import type { TSESLint } from '@typescript-eslint/utils';
export interface Options {
src?: string[];
ignoreExports?: string[];
missingExports?: true;
unusedExports?: boolean;
ignoreUnusedTypeExports?: boolean;
}
type MessageId = 'notFound' | 'unused';
declare const _default: TSESLint.RuleModule<MessageId, Options[], import("../utils/create-rule.ts").ImportXPluginDocs, TSESLint.RuleListener>;
export default _default;