dclint
Version:
A command-line tool for validating and enforcing best practices in Docker Compose files.
8 lines (7 loc) • 358 B
TypeScript
/**
* 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 { FormatterFunction } from './formatter.types';
declare const githubFormatter: FormatterFunction;
export { githubFormatter };