diff --git a/.vscode/settings.json b/.vscode/settings.json index 191bf66..9b3baf3 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,14 +2,22 @@ "cucumberautocomplete.stepsInvariants": true, "cucumberautocomplete.smartSnippets": true, "cucumberautocomplete.steps": [ + "packages/**/stepDefinitions/*.js", + "packages/**/index.js", "packages/**/autoComplete.js" ], "cucumberautocomplete.customParameters": [ { "parameter": "{jsonObject}", - "value": "(it|item {string}|file {string}|{string})" + "value": "\\S+\\s?\\S+" + }, + { + "parameter": "{validationsEquivalence}", + "value": "(<|<=|>|>=|=)" } ], - "cucumberautocomplete.syncfeatures": "features/**feature", - "cucumberautocomplete.strictGherkinCompletion": true -} + "cucumberautocomplete.syncfeatures": "packages/**/features/**feature", + "cucumberautocomplete.strictGherkinCompletion": false, + "cucumberautocomplete.strictGherkinValidation": false, + "cucumberautocomplete.gherkinDefinitionPart": "(Given|When|Then|MAFWhen)" +} \ No newline at end of file