/** * Starter Catalog — ~15 high-signal learned rules that ship with the npm package. * * These rules were curated from 214 rules harvested from real PR diffs in * popular open-source TypeScript projects. Selection criteria: * - Valid, compilable regex * - High or critical severity preferred * - General-purpose (not tied to a specific project) * - Good coverage across categories (security, error handling, etc.) * - Useful fixDescription * * All starter rules have `source: "bundled"` to distinguish them from * user-harvested rules. Local rules with the same ID take precedence. */ import type { LearnedRule } from './types.js'; export declare const STARTER_RULES: readonly LearnedRule[];