class RubyLsp::Requests::Support::RuboCopDiagnostic

def to_lsp_code_actions

: -> Array[Interface::CodeAction]
def to_lsp_code_actions
  code_actions = []
  code_actions << autocorrect_action if correctable?
  code_actions << disable_line_action
  code_actions
end