UNPKG

@felixgeelhaar/cclint

Version:

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

11 lines 522 B
import type { CodeBlock } from '../../../domain/CodeBlock.js'; import { Violation } from '../../../domain/Violation.js'; import type { LanguageValidator, ValidationContext } from '../LanguageValidator.js'; /** * Validates SQL code blocks for `SELECT *` usage and string-interpolation * patterns that indicate potential SQL injection. */ export declare class SqlValidator implements LanguageValidator { validate(block: CodeBlock, context: ValidationContext): Violation[]; } //# sourceMappingURL=SqlValidator.d.ts.map