UNPKG

gherkin-lint-ts

Version:

Gherkin features linter written in Typescript

11 lines (10 loc) 338 B
import { Feature, ResultError } from "../types"; export declare const name = "scenario-size"; export declare const availableConfigs: { "steps-length": { Rule: number; Background: number; Scenario: number; }; }; export declare function run(feature: Feature, unused: any, configuration: any): ResultError[];