UNPKG

@felixgeelhaar/cclint

Version:

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

15 lines 321 B
import type { Location } from './Location.js'; export interface Fix { range: { start: Location; end: Location; }; text: string; description: string; } export interface AutoFixResult { fixed: boolean; content: string; appliedFixes: Fix[]; } //# sourceMappingURL=AutoFix.d.ts.map