streetsidesoftware / vscode-spell-checker

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

Recognize English genitive case possessive clitic suffix "-'s" #232

Open lehni opened 6 years ago

lehni commented 6 years ago

Currently, the spell checker complains about all words ending in the possessive clitic suffix 's. It would be useful if it could learn this form of the English genitive case.

Jason3S commented 6 years ago

I agree that this can be an issue. I'll look into adding an option to ignore these. In the mean time, you can have the spell checker ignore them.

In your user settings or workspace settings, the following will ignore all 's

  "cSpell.ignoreRegExpList": ["'s\\b"]