Skip to content

Commit

Permalink
Merge pull request #8755 from owncloud/vscode-add-cucumber-autocomple…
Browse files Browse the repository at this point in the history
…te-extension

Add cucumber autocomplete extension + config
  • Loading branch information
kulmann authored Mar 30, 2023
2 parents 9f87057 + bb1c434 commit 8e32717
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"EditorConfig.EditorConfig",
"Orta.vscode-jest",
"Vue.volar",
"Vue.vscode-typescript-vue-plugin"
"Vue.vscode-typescript-vue-plugin",
"alexkrechik.cucumberautocomplete"
]
}
9 changes: 8 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,12 @@
},
"jest.jestCommandLine": "pnpm test:unit",
"npm.packageManager": "pnpm",
"typescript.format.enable": false
"typescript.format.enable": false,
"editor.quickSuggestions": {
"strings": true
},
"cucumberautocomplete.steps": [
"tests/e2e/cucumber/steps/**/*.ts"
],
"cucumberautocomplete.strictGherkinCompletion": true
}

0 comments on commit 8e32717

Please sign in to comment.