-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gherkin-lintrc
41 lines (41 loc) · 1.04 KB
/
.gherkin-lintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"allowed-tags": ["on", { "tags": ["@skip"] }],
"file-name": ["on", {"style": "PascalCase"}],
"indentation": [
"on", {
"Feature": 0,
"Background": 2,
"Scenario": 2,
"Step": 2,
"Examples": 4,
"example": 6,
"given": 4,
"when": 4,
"then": 4,
"and": 4,
"but": 4,
"feature tag": 0,
"scenario tag": 2
}
],
"new-line-at-eof": ["on", "yes"],
"no-dupe-scenario-names": "on",
"no-background-only-scenario": "on",
"no-dupe-feature-names": "on",
"no-duplicate-tags": "on",
"no-empty-background": "on",
"no-empty-file": "on",
"no-examples-in-scenarios": "on",
"no-files-without-scenarios": "on",
"no-homogenous-tags": "on",
"no-multiple-empty-lines": "on",
"no-partially-commented-tag-lines": "on",
"no-scenario-outlines-without-examples": "on",
"no-superfluous-tags": "on",
"no-trailing-spaces": "on",
"no-unnamed-features": "on",
"no-unnamed-scenarios": "on",
"no-unused-variables": "on",
"one-space-between-tags": "on",
"use-and": "on"
}