eslint-plugin-filename-export
Version:
ESLint plugin that ensures non-index filenames match to at least one named export.
10 lines • 441 B
TypeScript
import { ESLintUtils } from '@typescript-eslint/utils';
import { Options } from './types';
declare const _default: {
rules: {
'match-named-export': ESLintUtils.RuleModule<"noMatchingExport", Options, unknown, ESLintUtils.RuleListener>;
'match-default-export': ESLintUtils.RuleModule<"defaultExportDoesNotMatch", Options, unknown, ESLintUtils.RuleListener>;
};
};
export = _default;
//# sourceMappingURL=index.d.ts.map