Method: RuboCop::Server::ServerCommand::Base::Runner#run

Defined in:
lib/rubocop/server/server_command/base.rb

#runObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



21
22
23
24
25
26
# File 'lib/rubocop/server/server_command/base.rb', line 21

def run
  validate_token!
  Dir.chdir(@cwd) do
    super
  end
end