@felixgeelhaar/cclint
Version:
A comprehensive linter for CLAUDE.md files with multi-language code block validation
13 lines • 440 B
TypeScript
export declare class ContextFile {
readonly path: string;
readonly content: string;
readonly lines: string[];
constructor(path: string, content: string);
static fromFile(filePath: string): ContextFile;
getLineCount(): number;
getCharacterCount(): number;
getLine(lineNumber: number): string;
hasSection(sectionTitle: string): boolean;
private escapeRegExp;
}
//# sourceMappingURL=ContextFile.d.ts.map