UNPKG

@felixgeelhaar/cclint

Version:

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

11 lines 530 B
import type { CodeBlock } from '../../../domain/CodeBlock.js'; import { Violation } from '../../../domain/Violation.js'; import type { LanguageValidator, ValidationContext } from '../LanguageValidator.js'; /** * Validates Python code blocks for `print()` in non-example code, bare * `except:` clauses, and functions missing type hints. */ export declare class PythonValidator implements LanguageValidator { validate(block: CodeBlock, context: ValidationContext): Violation[]; } //# sourceMappingURL=PythonValidator.d.ts.map