eslint-plugin-jest-dom
Version:
ESLint plugin to follow best practices and anticipate common mistakes when writing tests with jest-dom
20 lines (17 loc) • 365 B
TypeScript
import { type Linter, type Rule } from "eslint";
declare const plugin: {
meta: {
name: string;
version: string;
};
configs: {
all: Linter.LegacyConfig;
recommended: Linter.LegacyConfig;
"flat/all": Linter.FlatConfig;
"flat/recommended": Linter.FlatConfig;
};
rules: {
[key: string]: Rule.RuleModule;
};
};
export = plugin;