UNPKG

dclint

Version:

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

16 lines (15 loc) 544 B
import type { Rule, RuleCategory, RuleMessage, RuleMeta, RuleSeverity, RuleType } from './rules.types'; import type { LintContext } from '../linter/linter.types'; declare class NoVersionFieldRule implements Rule { static readonly name = "no-version-field"; get name(): string; type: RuleType; category: RuleCategory; severity: RuleSeverity; meta: RuleMeta; fixable: boolean; getMessage(): string; check(context: LintContext): RuleMessage[]; fix(content: string): string; } export { NoVersionFieldRule };