| 5 | type RuleKey = keyof typeof rules |
| 6 | |
| 7 | export interface Plugin extends Omit<ESLint.Plugin, 'rules'> { |
| 8 | rules: Record<RuleKey, RuleModule<any, any, any>> |
| 9 | configs: { |
| 10 | recommended: ESLint.ConfigData |
| 11 | 'flat/recommended': Array<Linter.Config> |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | export const plugin: Plugin = { |
| 16 | meta: { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…