/** * The fly lexicon's chant audit catalog — metadata for the FLY post-synth * checks, contributed via `flyPlugin.auditCatalog()` (#687). * * Both entries carry `yamlBased: false`: each check reads the chant model * (`ctx.entities`) rather than the emitted manifest, because what they need — * whether a mount's volume is declared in the same stack — lives in the typed * graph and is gone by the time `fly.toml` exists. So they fire on * `chant build` and cannot fire on an audit of standalone Fly config. * `auditRule()` hardcodes `yamlBased: true`, so these are constructed directly * (the same reasoning as fountain's catalog). * * Without this the two checks reached `chant audit` with no title, tier, fix * kind, or category at all — `resolveAuditCatalog` contributes nothing for a * lexicon that omits the method, silently (#1346). */ import type { RuleMeta } from "@intentius/chant/audit/catalog"; export declare const flyAuditCatalog: Record; //# sourceMappingURL=audit-catalog.d.ts.map