我试图在MacOS的IntelliJ IDEA 8.1版本中禁用拼写检查。

我如何禁用它?


当前回答

在Mac上的Android Studio 1.1版本中,从文件菜单中设置拼写无法正常工作。

从Android Studio >首选项>检查设置拼写。

取消位于“项目设置”选项第一组中的“错别字”和“拼写”。

其他回答

2020年更新

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

如果你想在一个文件中抑制,你可以在文件中使用注释 像< !——suppress SpellCheckingInspection——> in html。

使用类/方法/字段的注释

@SuppressWarnings("SpellCheckingInspection")

在Windows和Android 2.3中…

文件->设置->检查->拼写…

他们需要像格式化程序一样引入@spellcheck:off。