/** * WGL020: Duplicate Job Names * * Detects multiple jobs that resolve to the same kebab-case name in * the serialized YAML. GitLab silently merges duplicate keys, which * causes unexpected behavior. */ import type { PostSynthCheck, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkDuplicateJobNames(yaml: string): PostSynthDiagnostic[]; export declare const wgl020: PostSynthCheck; //# sourceMappingURL=wgl020.d.ts.map