lib/solargraph/diagnostics/severities.rb



module Solargraph
  module Diagnostics
    # These severity constants match the DiagnosticSeverity constants in the
    # language server protocol.
    #
    module Severities
      ERROR = 1
      WARNING = 2
      INFORMATION = 3
      HINT = 4
    end
  end
end