UNPKG

@felixgeelhaar/cclint

Version:

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

11 lines 445 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[]); lint(file: ContextFile): Violation[]; } //# sourceMappingURL=StructureRule.d.ts.map