@felixgeelhaar/cclint
Version:
Catch CLAUDE.md drift before Claude misbehaves. Lints CLAUDE.md, skills, subagents, and hooks for Claude Code projects.
11 lines • 506 B
TypeScript
import type { CodeBlock } from '../../../domain/CodeBlock.js';
import { Violation } from '../../../domain/Violation.js';
import type { LanguageValidator, ValidationContext } from '../LanguageValidator.js';
/**
* Validates Go code blocks for unhandled errors after `:=` assignments and
* `panic()` usage in example code.
*/
export declare class GoValidator implements LanguageValidator {
validate(block: CodeBlock, context: ValidationContext): Violation[];
}
//# sourceMappingURL=GoValidator.d.ts.map