10 lines
297 B
Ruby
Executable file
10 lines
297 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require 'rubygems'
|
|
require 'bundler/setup'
|
|
|
|
# explicit rubocop config increases performance slightly while avoiding config confusion.
|
|
ARGV.unshift('--config', File.expand_path('../.rubocop.yml', __dir__))
|
|
|
|
load Gem.bin_path('rubocop', 'rubocop')
|