@truenine/eslint9-config
Version:
ESLint 9 configuration package for Compose Client projects with TypeScript, Vue, and modern JavaScript support
12 lines (11 loc) • 374 B
text/typescript
import { Rule } from "eslint";
//#region src/rules/code-style/prefer-lookup-table.d.ts
/**
* ESLint rule: prefer-lookup-table
*
* Detects long chains of `||` checks against the same variable and suggests using a Set lookup or Array.includes.
*/
declare const rule: Rule.RuleModule;
//#endregion
export { rule as default };
//# sourceMappingURL=prefer-lookup-table.d.mts.map