Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd*: Enable Sorbet at typed: strict level #86

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cmd/alias.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# typed: strict
# frozen_string_literal: true

require "abstract_command"
Expand All @@ -17,6 +18,7 @@ class Alias < AbstractCommand
named_args max: 1
end

sig { override.void }
def run
arg = args.named.first
split_arg = arg.split("=", 2) if arg.present?
Expand Down
11 changes: 11 additions & 0 deletions cmd/alias.rbi
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# typed: strict

class Homebrew::Cmd::Alias
sig { returns(Homebrew::Cmd::Alias::Args) }
def args; end
end

class Homebrew::Cmd::Alias::Args < Homebrew::CLI::Args
sig { returns(T::Boolean) }
def edit?; end
end
2 changes: 2 additions & 0 deletions cmd/unalias.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# typed: strict
# frozen_string_literal: true

require "abstract_command"
Expand All @@ -13,6 +14,7 @@ class Unalias < AbstractCommand
named_args :alias, min: 1
end

sig { override.void }
def run
Aliases.init
args.named.each { |a| Aliases.remove a }
Expand Down