可以通过快速修复移除不必要的圆括号。
示例:
class Example # 函数类型中不必要的圆括号 def call: () -> untyped end
在应用快速修复后:
class Example def call: -> untyped end