Skip to content

Commit

Permalink
Update .gherkin-lintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
VijayKesharwani authored May 23, 2024
1 parent fa65a54 commit e9c4526
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .gherkin-lintrc
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,26 @@
"no-empty-background": "on",
"scenario-size": ["on", { "steps-length": {"Background": 15, "Scenario": 15}}],
"only-one-when": "on",
"allowed-tags": ["on", {"tags": ["@watch", "@wip"], "patterns": ["^@todo$"]}]
"allowed-tags": ["on", {"tags": ["@watch", "@wip"], "patterns": ["^@todo$"]}],
"file-name": ["on", {"style": "PascalCase"}],
"max-scenarios-per-file": ["on", {"maxScenarios": 10, "countOutlineExamples": true}],
"no-restricted-patterns": ["on", {
"Global": [
"^globally restricted pattern"
],
"Feature": [
"poor description",
"validate",
"verify"
],
"Background": [
"show last response",
"a debugging step"
],
"Scenario": [
"show last response",
"a debugging step"
]
}],
"required-tags": ["on", {"tags": ["^@issue:[1-9]\\d*$"], "ignoreUntagged": false}]
}

0 comments on commit e9c4526

Please sign in to comment.