lib/ruby_lsp/utils.rb in ruby-lsp-0.5.1 vs lib/ruby_lsp/utils.rb in ruby-lsp-0.6.0
- old
+ new
@@ -4,10 +4,10 @@
module RubyLsp
# Used to indicate that a request shouldn't return a response
VOID = T.let(Object.new.freeze, Object)
# This freeze is not redundant since the interpolated string is mutable
- WORKSPACE_URI = T.let(URI("file://#{Dir.pwd}".freeze), URI::Generic) # rubocop:disable Style/RedundantFreeze
+ WORKSPACE_URI = T.let(URI("file://#{Dir.pwd}".freeze), URI::Generic)
# A notification to be sent to the client
class Message
extend T::Sig
extend T::Helpers