UNPKG

@felixgeelhaar/cclint

Version:

Catch CLAUDE.md drift before Claude misbehaves. Lints CLAUDE.md, skills, subagents, and hooks for Claude Code projects.

11 lines 516 B
import type { CodeBlock } from '../../../domain/CodeBlock.js'; import { Violation } from '../../../domain/Violation.js'; import type { LanguageValidator, ValidationContext } from '../LanguageValidator.js'; /** * Validates Bash/shell code blocks for unquoted variables, dangerous * `rm -rf` usage, and unchecked `cd` commands. */ export declare class BashValidator implements LanguageValidator { validate(block: CodeBlock, context: ValidationContext): Violation[]; } //# sourceMappingURL=BashValidator.d.ts.map