Port Homebrew::DevCmd::StyleCmd

This commit is contained in:
Douglas Eichelberger 2024-03-21 21:44:06 -07:00
parent 1436b06e90
commit 0d04f198d2
2 changed files with 61 additions and 61 deletions

View File

@ -1,17 +1,16 @@
# typed: true # typed: strict
# frozen_string_literal: true # frozen_string_literal: true
require "abstract_command"
require "json" require "json"
require "open3" require "open3"
require "style" require "style"
require "cli/parser" require "cli/parser"
module Homebrew module Homebrew
module_function module DevCmd
class StyleCmd < AbstractCommand
sig { returns(CLI::Parser) } cmd_args do
def style_args
Homebrew::CLI::Parser.new do
description <<~EOS description <<~EOS
Check formulae or files for conformance to Homebrew style guidelines. Check formulae or files for conformance to Homebrew style guidelines.
@ -42,11 +41,9 @@ module Homebrew
named_args [:file, :tap, :formula, :cask], without_api: true named_args [:file, :tap, :formula, :cask], without_api: true
end end
end
def style
args = style_args.parse
sig { override.void }
def run
target = if args.no_named? target = if args.no_named?
nil nil
else else
@ -73,3 +70,5 @@ module Homebrew
Homebrew.failed = !Style.check_style_and_print(target, **options) Homebrew.failed = !Style.check_style_and_print(target, **options)
end end
end end
end
end

View File

@ -1,7 +1,8 @@
# frozen_string_literal: true # frozen_string_literal: true
require "cmd/shared_examples/args_parse" require "cmd/shared_examples/args_parse"
require "dev-cmd/style"
RSpec.describe "brew style" do RSpec.describe Homebrew::DevCmd::StyleCmd do
it_behaves_like "parseable arguments" it_behaves_like "parseable arguments"
end end