如何为scala关闭IntelliJ警告“具有访问者名称的方法是空的 - paren”

时间:2017-06-26 01:10:04

标签: scala intellij-idea

如何关闭此警告?我喜欢Intellij的大部分警告,但不喜欢这个警告。

method with accessor like name is empty-paren

accessor-like-name

2 个答案:

答案 0 :(得分:4)

此检查警告您,如果没有参数且方法没有副作用,方法不遵循建议的惯例以使用无参数方法。

enter image description here

要在IntelliJ IDEA中禁用它,请转到:设置... - >编辑 - >代码风格 - >检查 - > Scala - >方法签名并取消选中具有访问者名称的方法为空paren

答案 1 :(得分:1)

多个选项:(首先是任何Intellij设置,并且会为您节省很多时间)

    • 到处搜索(默认快捷方式)
      • Windows / Linux:双击 Shift
      • Mac:双击
    • 确保您已启用IDE设置:(单击cog并根据需要单击“开”) enter image description here

    • 输入您要搜索的设置,例如“带访问者的方法”

    • 关闭相应的检查。 enter image description here
    • 打开设置(默认快捷方式)
      • Windows / Linux: Ctrl + Alt + S
      • Mac: +
    • 转到编辑 - > 检查 - > Scala - > 方法签名
    • 找到所需的检查并将其关闭。