Skip to content

Commit

Permalink
MDL-56519 behat: Re-organize rules matching order
Browse files Browse the repository at this point in the history
re-ordered rules to match gherkin-lint readme
https://github.com/vsiakka/gherkin-lint#available-rules
  • Loading branch information
Rajesh Taneja committed Jan 3, 2017
1 parent 8b02e2d commit e989ff2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .gherkin-lintrc
Original file line number Diff line number Diff line change
@@ -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"
}

0 comments on commit e989ff2

Please sign in to comment.