MDL-56519 behat: Re-organize rules matching order

re-ordered rules to match gherkin-lint readme
https://github.com/vsiakka/gherkin-lint#available-rules
This commit is contained in:
Rajesh Taneja 2016-12-23 11:28:08 +08:00
parent 8b02e2d98c
commit e989ff2d34
No known key found for this signature in database
GPG Key ID: B363F7FB787F80E4

View File

@ -1,20 +1,20 @@
{
"no-files-without-scenarios" : "on",
"no-unamed-features": "on",
"no-unamed-scenarios": "on",
"no-dupe-scenario-names": "off",
"no-dupe-feature-names": "on",
"no-partially-commented-tag-lines": "on",
"indentation": ["on",{
"Feature": 0,
"Background": 2,
"Scenario": 0,
"Scenario": 2,
"Step": 4,
"given": 4,
"and": 4
}],
"no-trailing-spaces": "on",
"no-multiple-empty-lines": "on",
"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-unamed-features": "on",
"no-unamed-scenarios": "on",
"no-scenario-outlines-without-examples": "on"
}