Sha256: 9087ca9cc1974dae8e9fca681faea8ba30eecac799c2fc8100653c74f6da9854

Contents?: true

Size: 663 Bytes

Versions: 13

Compression:

Stored size: 663 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

require "sorbet-runtime"

begin
  T::Configuration.default_checked_level = :never
  # Suppresses call validation errors
  T::Configuration.call_validation_error_handler = ->(*) {}
  # Suppresses errors caused by T.cast, T.let, T.must, etc.
  T::Configuration.inline_type_error_handler = ->(*) {}
  # Suppresses errors caused by incorrect parameter ordering
  T::Configuration.sig_validation_error_handler = ->(*) {}
rescue
  # Need this rescue so that if another gem has
  # already set the checked level by the time we
  # get to it, we don't fail outright.
  nil
end

require_relative "../lib/ruby_lsp/server"

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
ruby-lsp-0.3.8 exe/ruby-lsp
ruby-lsp-0.3.7 exe/ruby-lsp
ruby-lsp-0.3.6 exe/ruby-lsp
ruby-lsp-0.3.5 exe/ruby-lsp
ruby-lsp-0.3.4 exe/ruby-lsp
ruby-lsp-0.3.3 exe/ruby-lsp
ruby-lsp-0.3.2 exe/ruby-lsp
ruby-lsp-0.3.1 exe/ruby-lsp
ruby-lsp-0.3.0 exe/ruby-lsp
ruby-lsp-0.2.4 exe/ruby-lsp
ruby-lsp-0.2.3 exe/ruby-lsp
ruby-lsp-0.2.2 exe/ruby-lsp
ruby-lsp-0.2.1 exe/ruby-lsp