UNPKG

dclint

Version:

A command-line tool for validating and enforcing best practices in Docker Compose files.

5 lines (4 loc) 219 B
import type { LintResult } from '../linter/linter.types'; type FormatterFunction = (results: LintResult[]) => string; export declare function loadFormatter(formatterName: string): Promise<FormatterFunction>; export {};