Disable spell checking on IntelliJ IDEA

Viewed 94960

I'm trying to disable spell checking in MacOS's IntelliJ IDEA version 8.1.

How can I disable it?

11 Answers

Follow :

File >> Settings >> Editor >> Inspections >> Proofreading >> Typo

-> Uncheck the options that you want to disable.

Source for more details - Spellchecking with intelliJ

update for 2020

File >> Settings >> Editor >> Inspections >> Proofreading (uncheck all)

enter image description here

If you want to suppress in a file, you can use comment in file like <!--suppress SpellCheckingInspection --> in html.

Related