UNPKG

dclint

Version:

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

7 lines (6 loc) 350 B
/** * Formatter for Github Annotations * See <https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#example-creating-an-annotation-for-an-error> */ import type { LintResult } from '../linter/linter.types'; export default function githubFormatter(results: LintResult[]): string;