From e989ff2d3437242cf3e627e7c7dd8622549eeb7a Mon Sep 17 00:00:00 2001 From: Rajesh Taneja Date: Fri, 23 Dec 2016 11:28:08 +0800 Subject: [PATCH] MDL-56519 behat: Re-organize rules matching order re-ordered rules to match gherkin-lint readme https://github.com/vsiakka/gherkin-lint#available-rules --- .gherkin-lintrc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.gherkin-lintrc b/.gherkin-lintrc index 04ef52ba3e1..9439956f027 100644 --- a/.gherkin-lintrc +++ b/.gherkin-lintrc @@ -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" }