gplint
Version:
A Gherkin linter/validator written in Javascript.
13 lines • 512 B
TypeScript
import { Documentation, GherkinData, RuleError, RuleSubConfig } from '../types.js';
export declare const name = "name-length";
export declare const availableConfigs: {
Feature: number;
Rule: number;
Step: number;
Scenario: number;
};
type Configuration = RuleSubConfig<typeof availableConfigs>;
export declare function run({ feature }: GherkinData, configuration: Configuration): RuleError[];
export declare const documentation: Documentation;
export {};
//# sourceMappingURL=name-length.d.ts.map