Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 610 Bytes

readme.md

File metadata and controls

36 lines (21 loc) · 610 Bytes

gulp-gherkin-lint Build Status

Uses gherkin parser to parse feature files and reports on any parsing errors.

Install

$ npm install --save-dev gulp-gherkin-lint

Usage

var gulp = require('gulp');
var gherkinlint = require('gulp-gherkin-lint');

gulp.task('default', function () {
	return gulp.src('src/file.feature')
		.pipe(gherkinlint());
});

API

gherkinlint()

options

None so far

License

MIT © jlutz