2024-06-21 23:35:36 -04:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
require "rubygems"
|
|
|
|
require "bundler/setup"
|
|
|
|
|
2025-01-16 19:40:29 -05:00
|
|
|
# Explicit RuboCop config increases performance slightly while avoiding config confusion.
|
2024-06-21 23:35:36 -04:00
|
|
|
ARGV.unshift("--config", File.expand_path("../.rubocop.yml", __dir__))
|
|
|
|
|
|
|
|
load Gem.bin_path("rubocop", "rubocop")
|