/** * Shell/POSIX baseline rules — curated from ShellCheck and the POSIX spec. * Protects shell scripts (including totem's own git hooks) from bash-only * constructs that break on dash, ash, or other POSIX-only shells. * * @see Proposal 210 Phase 1 (proactive language packs) * @see #1152 (proactive language packs ticket) */ import type { CompiledRule } from '@mmnto/totem'; export declare const COMPILED_SHELL_BASELINE: CompiledRule[]; //# sourceMappingURL=baseline-shell-posix.d.ts.map