UNPKG

@felixgeelhaar/cclint

Version:

A comprehensive linter for CLAUDE.md files with multi-language code block validation

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