2024-07-14 16:18:26 -04:00
|
|
|
# typed: strict
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "abstract_command"
|
2024-07-15 11:40:37 -04:00
|
|
|
require "shell_command"
|
2024-07-14 16:18:26 -04:00
|
|
|
|
|
|
|
module Homebrew
|
2024-07-15 11:40:37 -04:00
|
|
|
module DevCmd
|
2024-07-14 16:18:26 -04:00
|
|
|
class Rubocop < AbstractCommand
|
2024-07-15 11:40:37 -04:00
|
|
|
include ShellCommand
|
|
|
|
|
2024-07-14 16:18:26 -04:00
|
|
|
cmd_args do
|
|
|
|
description <<~EOS
|
|
|
|
Installs, configures and runs Homebrew's `rubocop`.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|