-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gherkin-lintrc
78 lines (78 loc) · 1.67 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"file-name": [
"on",
{
"style": "PascalCase"
}
],
"no-files-without-scenarios": "on",
"no-unnamed-features": "on",
"no-unnamed-scenarios": "on",
"no-dupe-scenario-names": [
"on",
"in-feature"
],
"no-dupe-feature-names": "on",
"no-partially-commented-tag-lines": "on",
"indentation": [
"on",
{
"Feature": 0,
"Background": 4,
"Scenario": 4,
"Step": 8,
"Examples": 8,
"example": 12,
"given": 8,
"when": 8,
"then": 8,
"and": 8,
"but": 8,
"feature tag": 0,
"scenario tag": 4
}
],
"no-trailing-spaces": "on",
"new-line-at-eof": [
"on",
"yes"
],
"no-multiple-empty-lines": "on",
"no-empty-file": "on",
"no-scenario-outlines-without-examples": "on",
"name-length": [
"on",
{
"Feature": 150,
"Scenario": 150,
"Step": 150
}
],
"no-restricted-tags": [
"on",
{
"tags": [
"@dev",
"@watch",
"@wip"
]
}
],
"use-and": "on",
"no-duplicate-tags": "on",
"no-superfluous-tags": "on",
"no-homogenous-tags": "on",
"one-space-between-tags": "on",
"no-unused-variables": "on",
"no-background-only-scenario": "on",
"no-empty-background": "on",
"scenario-size": [
"on",
{
"steps-length": {
"Background": 15,
"Scenario": 15
}
}
]
}