Disable spell checking on IntelliJ IDEA
Asked Answered
V

13

275

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

How can I disable it?

Vitrification answered 4/4, 2009 at 21:26 Comment(1)
This applies to the Win version as well.Anarchy
C
437

Follow :

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

-> Uncheck the options that you want to disable.

Source for more details - Spellchecking with intelliJ

Cascara answered 19/2, 2010 at 18:41 Comment(10)
actually, alt+enter then "correct word" then "disable" works fine tooAlar
(+1) I hate to see my code with those red line on the bottom. PD: Thanks.Footlocker
Android Studio 1.0.2: File>>Settings>>Inspections>>Spelling>>Typo but File>>Settings and search "spelling" is better! :)Py
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.Delineation
Another important setting: File >> Settings >> Version Control >> Commit Dialog >> Spelling.Griego
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.Nehru
Is there any way to disable spell check for specific language only?Ofelia
For me (v2020.3.2 on macOS) this is under Preferences => Editor => Inspections => Proofreading => * ... uncheck Boxes as needed.Headship
Updated response Spelling was changed to ProofreadingHereunto
Quicker to just search for "Proofreading" in settings rather than navigating the tree.Haymo
B
24

For 12.1.6 on OSX:

Preferences->Inspections->Spelling

Berth answered 13/10, 2013 at 3:3 Comment(0)
D
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.

Dibbrun answered 28/5, 2016 at 13:16 Comment(1)
You might add how to disable for the current js file: // noinspection SpellCheckingInspection (see supress-spellchecker), and <!--suppress SpellCheckingInspection --> for HTML (That was not exactly the question, but I laded here when searching).Urquhart
M
13

Use the annotation for the class / method / field

@SuppressWarnings("SpellCheckingInspection")
Mccowan answered 19/12, 2016 at 11:16 Comment(0)
W
8

In Windows and Android 2.3 ...

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

Winded answered 22/9, 2016 at 14:25 Comment(0)
K
5

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

Kim answered 7/9, 2016 at 15:15 Comment(1)
There is an annotation for that @SuppressWarnings("SpellCheckingInspection")Mccowan
O
5

update for 2020

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

enter image description here

Obey answered 1/6, 2020 at 18:51 Comment(0)
S
4

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

Sprinkle answered 10/3, 2015 at 17:12 Comment(0)
F
2

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

Footfall answered 16/11, 2017 at 10:12 Comment(0)
P
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".

Plangent answered 15/2, 2015 at 16:12 Comment(0)
Z
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-

Zeebrugge answered 26/5, 2023 at 7:36 Comment(0)
F
0

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

Fann answered 23/12, 2015 at 1:54 Comment(0)
R
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

Ramey answered 17/11, 2022 at 16:19 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.