gherkin-lint-ts
Version:
Gherkin features linter written in Typescript
11 lines (10 loc) • 363 B
TypeScript
import { Feature, ResultError } from "../types";
export declare const name = "no-restricted-patterns";
export declare const availableConfigs: {
Global: never[];
Scenario: never[];
ScenarioOutline: never[];
Background: never[];
Feature: never[];
};
export declare function run(feature: Feature, unused: any, configuration: any): ResultError[];