UNPKG

@felixgeelhaar/cclint

Version:

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

12 lines 488 B
import type { Rule } from '../domain/Rule.js'; import { ContextFile } from '../domain/ContextFile.js'; import { Violation } from '../domain/Violation.js'; export declare class StructureRule implements Rule { readonly id = "structure"; readonly description: string; private readonly requiredSections; constructor(requiredSections?: string[]); appliesTo(file: ContextFile): boolean; lint(file: ContextFile): Violation[]; } //# sourceMappingURL=StructureRule.d.ts.map