我试图在MacOS的IntelliJ IDEA 8.1版本中禁用拼写检查。
我如何禁用它?
我试图在MacOS的IntelliJ IDEA 8.1版本中禁用拼写检查。
我如何禁用它?
当前回答
如果你想在一个文件中抑制,你可以在文件中使用注释 像< !——suppress SpellCheckingInspection——> in html。
其他回答
在MS中,可以使用Alt+Enter禁用检查。
使用类/方法/字段的注释
@SuppressWarnings("SpellCheckingInspection")
2020年更新
File >> Settings >> Editor >> Inspections >> Proofreading (uncheck all)
遵循:
File >> Settings >> Editor >> Inspections >> Proofreading >> Typo
->取消勾选需要禁用的选项。
更多详细信息- intelliJ拼写检查
如果你想在一个文件中抑制,你可以在文件中使用注释 像< !——suppress SpellCheckingInspection——> in html。