gherkin-lint-ts
Version:
Gherkin features linter written in Typescript
10 lines (9 loc) • 310 B
TypeScript
import { Feature, ResultError } from "../types";
export declare const name = "name-length";
export declare const availableConfigs: {
Feature: number;
Rule: number;
Step: number;
Scenario: number;
};
export declare function run(feature: Feature, unused: any, configuration: any): ResultError[];