@felixgeelhaar/cclint
Version:
Catch CLAUDE.md drift before Claude misbehaves. Lints CLAUDE.md, skills, subagents, and hooks for Claude Code projects.
11 lines • 423 B
TypeScript
import type { Rule } from '../domain/Rule.js';
import { ContextFile } from '../domain/ContextFile.js';
import { Violation } from '../domain/Violation.js';
export declare class FileSizeRule implements Rule {
readonly id = "file-size";
readonly description: string;
private readonly maxSize;
constructor(maxSize?: number);
lint(file: ContextFile): Violation[];
}
//# sourceMappingURL=FileSizeRule.d.ts.map