streetsidesoftware / vscode-spell-checker

A simple source code spell checker for code
https://streetsidesoftware.github.io/vscode-spell-checker/
Other
1.35k stars 123 forks source link

Add Gherkin(feature) to enabled file-types by default? #773

Open zypA13510 opened 3 years ago

zypA13510 commented 3 years ago

Gherkin feature files (for Cucumber) are supposed to be plain English, much like Markdown. I don't see why not to add it to the list of spell-check-enabled file-types by default.

levchak0910 commented 3 days ago

To enable spell checking in .feature files, add to settings.json

"cSpell.enableFiletypes": [
  // ....
  "cucumber"
],

works for the official Cucumber VS Code extension