DEV Community

Krzysztof Platis
Krzysztof Platis

Posted on • Updated on

No more typos in the code ✍️

Code Spell Checker is a handy VSCode extension. It highlights typos in the code, e.g. in the names of your classes or methods, or even in the code comments. You can quickly fix the typo based on the suggestions or add a custom word to the user or workspace dictionary.

Example of spell checking

Avoid typos in Public API of your library

It's important to avoid typos, especially in the public API of libraries that you author. Nobody enjoys using misspelled API. Moreover, you don't want the hassle of introducing a breaking change just to fix a misspelled method's name - library users are not fond of breaking changes.

Top comments (0)