/** * WGL028: Redundant Needs * * Detects `needs:` entries that list jobs already implied by stage ordering. * While not incorrect, redundant needs add noise and make the pipeline * harder to maintain. This is informational only. */ import type { PostSynthCheck, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkRedundantNeeds(yaml: string): PostSynthDiagnostic[]; export declare const wgl028: PostSynthCheck; //# sourceMappingURL=wgl028.d.ts.map