Gherkin Lintrc

This commit is contained in:
Lewis Cowles 2020-11-18 06:54:45 +00:00 committed by Alain Schlesser
parent 22dada7634
commit 20f3e36fd8

23
.gherkin-lintrc Normal file
View file

@ -0,0 +1,23 @@
{
"indentation": [
"on",
{
"Feature": 0,
"Background": 2,
"Scenario": 2,
"Step": 4,
"given": 4,
"and": 4
}
],
"no-dupe-feature-names": "on",
"no-dupe-scenario-names": "off",
"no-empty-file": "on",
"no-files-without-scenarios": "on",
"no-multiple-empty-lines": "on",
"no-partially-commented-tag-lines": "on",
"no-trailing-spaces": "on",
"no-unnamed-features": "on",
"no-unnamed-scenarios": "on",
"no-scenario-outlines-without-examples": "on"
}