271

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

How can I disable it?

alex
  • 479,566
  • 201
  • 878
  • 984

13 Answers13

431

Follow :

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

-> Uncheck the options that you want to disable.

Source for more details - Spellchecking with intelliJ

Mike
  • 58,961
  • 76
  • 175
  • 221
user277236
  • 4,311
  • 1
  • 15
  • 3
  • 27
    actually, alt+enter then "correct *word*" then "disable" works fine too – Ven Jul 01 '13 at 17:10
  • 3
    (+1) I hate to see my code with those red line on the bottom. PD: Thanks. – BlaShadow Jan 23 '14 at 04:56
  • 8
    Android Studio 1.0.2: File>>Settings>>Inspections>>Spelling>>Typo but File>>Settings and search "spelling" is better! :) – Evilripper Feb 13 '15 at 16:54
  • Just to be clear, the options you can disable will be in the right-hand column after you click on "Typo". Checking the "Typo" checkbox disables them all. – Noumenon May 09 '16 at 22:36
  • 3
    Another important setting: File >> Settings >> Version Control >> Commit Dialog >> Spelling. – Gogowitsch Aug 11 '17 at 09:42
  • Using this answer, and selecting "Default IDE" profile in the top of the setting popup will store this setting globally (for all your projects). Then you will be happy. – Mat Mar 22 '18 at 17:27
  • Is there any way to disable spell check for specific language only? – zur4ik Jun 17 '20 at 14:16
  • For me (v2020.3.2 on macOS) this is under `Preferences => Editor => Inspections => Proofreading => *` ... uncheck Boxes as needed. – Rocco Feb 26 '21 at 14:02
  • Updated response Spelling was changed to Proofreading – Mike Sep 22 '21 at 17:12
  • Quicker to just search for "Proofreading" in settings rather than navigating the tree. – Steve Chambers Dec 08 '21 at 09:31
24

For 12.1.6 on OSX:

Preferences->Inspections->Spelling

croyd
  • 1,075
  • 1
  • 11
  • 15
22

I've put together a "visual solution" here (inspired by a previous solution above/below by @user277236 in this forum!).

In Webstorm you can either:

  1. Disable spell checking entirely, or
  2. Disable spell checking selectively (e.g. just the code), but enable for some others (e.g. comments).

I'm on MacOS Webstorm (version 2016.1.2). First thing first, go to the "Inspection" pane like this...

Webstorm -> Preferences -> search for "Inspections" 

or...

Webstorm -> Preferences -> Editor -> Inspections

Within the Inspection search box, search "Spelling".

Option 1 - Disable spell-checking entirely

enter image description here

Option 2 - Disable spell-checking selectively

enter image description here

I've gone for option 2 myself. This seems to work for me so far.

Atlas7
  • 2,726
  • 4
  • 27
  • 36
  • You might add how to disable for the current js file: `// noinspection SpellCheckingInspection` (see [supress-spellchecker](https://www.jetbrains.com/help/webstorm/spellchecking.html#supress-spellchecker)), and `` for HTML (That was not exactly the question, but I laded here when searching). – kca Mar 07 '23 at 17:31
12

Use the annotation for the class / method / field

@SuppressWarnings("SpellCheckingInspection")
Martin Mlostek
  • 2,755
  • 1
  • 28
  • 57
8

In Windows and Android 2.3 ...

File -> Settings -> Inspections -> Spelling ...

bad_coder
  • 11,289
  • 20
  • 44
  • 72
6

update for 2020

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

enter image description here

Savrige
  • 3,352
  • 3
  • 32
  • 38
5

They need to introduce @spellcheck:off like the formatter.

fmpdmb
  • 1,370
  • 3
  • 21
  • 34
4

For Android Studio, I found "Inspections" directly under "Project Settings," and not under "IDE Settings/Editor".

Cartesian Theater
  • 1,920
  • 2
  • 29
  • 49
2

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

aristotll
  • 8,694
  • 6
  • 33
  • 53
1

On Android Studio version 1.1 on Mac setting off Spelling from File menu does not work.

Set spelling from Android Studio > Preferences > Inspections.

Uncheck Typo and uncheck Spelling located in the first group of options "Project Settings".

AntonioJSG
  • 19
  • 3
1

If you want to disable it for all future project, you can disable it in the new project setting:

File | New Projects Settings | Preferences for New Projects...

source: https://intellij-support.jetbrains.com/hc/en-us/community/posts/360010504879-Disable-spellcheck-everywhere-globally-

heftiq
  • 7
  • 2
0

In MS, you can use Alt+Enter to disable the inspections.

piglovesx
  • 92
  • 4
0

I have just find out that the typo inspection feature is provided by the Grazie plugin, which comes pre-installed in IntelliJ. You can just disable displugin in the setting and all typo inspection feature will no longer be available.

Click here