公告
财富商城
积分规则
提问
发文
2019-01-21 00:09发布
Summer. ? 凉城
I'm trying to disable spell checking in MacOS's IntelliJ IDEA version 8.1.
How can I disable it?
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:
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".
I've gone for option 2 myself. This seems to work for me so far.
Use the annotation for the class / method / field
@SuppressWarnings("SpellCheckingInspection")
In Windows and Android 2.3 ...
File -> Settings -> Inspections -> Spelling ... And Happy coding!
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".
Follow :
File >> Settings >> Editor >> Inspections >> Spelling >> Typo
-> Uncheck the options that you want to disable.
->
Source for more details - Spellchecking with intelliJ
In MS, you can use Alt+Enter to disable the inspections.
Alt+Enter
最多设置5个标签!
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:
I'm on MacOS Webstorm (version 2016.1.2). First thing first, go to the "Inspection" pane like this...
or...
Within the Inspection search box, search "Spelling".
Option 1 - Disable spell-checking entirely
Option 2 - Disable spell-checking selectively
I've gone for option 2 myself. This seems to work for me so far.
Use the annotation for the class / method / field
In Windows and Android 2.3 ...
File -> Settings -> Inspections -> Spelling ... And Happy coding!
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".
Follow :
->
Uncheck the options that you want to disable.Source for more details - Spellchecking with intelliJ
In MS, you can use
Alt+Enter
to disable the inspections.