UNPKG

gherkin-lint-ts

Version:

Gherkin features linter written in Typescript

8 lines (7 loc) 274 B
import { Feature, ResultError } from "../types"; export declare const name = "required-tags"; export declare const availableConfigs: { tags: never[]; ignoreUntagged: boolean; }; export declare function run(feature: Feature, unused: any, config: any): ResultError[];