28

How can I disable spelling check in Visual Studio 2010? By spelling check I mean in comments, string etc, not in actual code

hammar
  • 138,522
  • 17
  • 304
  • 385
Chin
  • 19,717
  • 37
  • 107
  • 164
  • 1
    When you say spelling do you mean as in a dictionary based spell checker? If so it sounds like you have an add-on or similar that you need to disable or uninstall. – eandersson Oct 29 '12 at 00:42

5 Answers5

21

In the Visual Assist X Options dialog on the Underlines page, uncheck the "Underline spelling errors in comments and strings" option.

sean e
  • 11,792
  • 3
  • 44
  • 56
14

Cory - This will disable syntax highlighting.

This is probably an extension you have installed. You needs to disable it in the extensions manager or configure it not to check spelling.

http://blogs.msdn.com/b/yardman/archive/2011/02/01/visual-studio-2010-spell-checker.aspx

For example in my install spell checking is provided by Visual Assist. If I disable this extension then the squigglies in comments go away.

Ade Miller
  • 13,575
  • 1
  • 42
  • 75
9

I'm fairly certain VS2010 doesn't have a built in spell-checker, however, the C/C++ options contain IntelliSense which can cause "red squiggles." Here's how to disable those:

Tools -> Options -> Text Editor -> C/C++ -> Advanced

Under "IntelliSense" will be an option called "Disable Squiggles." Set it to true.

Cory James
  • 144
  • 5
2

Had this problem in Visual Studio 2019. Turned out it was my Resharper extension. Extensions->Resparper->Options->Tools->Respeller->Enable Respeller (uncheck)

tobbenb3
  • 657
  • 1
  • 6
  • 9
0

in javascript I solved this by going to Tools > Options > TextEditor > Javascript > advanced > Uncheck Show Syntax Errors.