EWSoftware / VSSpellChecker

A Visual Studio spell checker editor extension that checks the spelling of comments, strings, and plain text as you type. Supports configuration and various languages.
Other
377 stars 65 forks source link

How to make it work for Class name, Method name, Variable? #246

Closed madnik7 closed 2 years ago

madnik7 commented 2 years ago

It looks like it just checks the string, but we need to check all c# contents, including variables, especially public properties. Is there any way to enable it for them too?

EWSoftware commented 2 years ago

It will require a code analyzer. See #111.

madnik7 commented 2 years ago

Owa! The last comment is for last year! Are you still working on this project or is it dead?

EWSoftware commented 2 years ago

I'm still working on this project but a code analyzer is a different thing altogether and I haven't had time to work on that.

madnik7 commented 2 years ago

Isn't it possible to just treat all scripts as text?

EWSoftware commented 2 years ago

You'd still have to parse the text to figure out the syntax, no small task given how many different languages there are out there.