UNPKG

lit-analyzer

Version:

CLI that type checks bindings in lit-html templates

17 lines 539 B
import { LitAnalyzerRules } from "../analyze/lit-analyzer-config.js"; export type FormatterFormat = "code" | "list" | "markdown"; export interface LitAnalyzerCliConfig { debug?: boolean; help?: boolean; noColor?: boolean; maxWarnings?: number; outFile?: string; failFast?: boolean; quiet?: boolean; strict?: boolean; format?: FormatterFormat; rules?: LitAnalyzerRules; maxProjectImportDepth?: number; maxNodeModuleImportDepth?: number; } //# sourceMappingURL=lit-analyzer-cli-config.d.ts.map