gplint
Version:
A Gherkin linter/validator written in Javascript.
12 lines • 505 B
TypeScript
import { Documentation, GherkinData, RuleError, RuleSubConfig } from '../types.js';
export declare const name = "max-keywords";
export declare const availableConfigs: {
given: number;
when: number;
then: number;
onlyContiguous: boolean;
ignoreConjunctions: boolean;
};
export declare function run({ feature }: GherkinData, configuration: RuleSubConfig<typeof availableConfigs>): RuleError[];
export declare const documentation: Documentation;
//# sourceMappingURL=max-keywords.d.ts.map