不要な丸括弧を除去するクイックフィックスを使用できます。
例:
class Example # 関数の型に不要な丸括弧があります def call: () -> untyped end
クイックフィックス適用後:
class Example def call: -> untyped end