/** * WGL043: Match-Anything Regex Gate * * Flags a `rules:if` whose regex match (`=~`) uses a pattern that matches every * value — an empty regex, dot-star, or an anchored dot-star. The condition reads * like a filter on a ref or variable but admits everything, so it gates nothing. * This is how an unsound condition is obscured behind a regex. Tighten the * pattern or remove the gate. */ import type { PostSynthCheck } from "@intentius/chant/lint/post-synth"; export declare const wgl043: PostSynthCheck; //# sourceMappingURL=wgl043.d.ts.map