Skip to content

Commit

Permalink
fix vscode autocomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
martdo02 committed Jan 3, 2024
1 parent 32f1979 commit 08bfd8c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
}

0 comments on commit 08bfd8c

Please sign in to comment.