strict typechecking

Signed-off-by: William Woodruff <william@yossarian.net>
This commit is contained in:
William Woodruff 2025-02-03 16:28:46 +01:00
parent 77f55aab05
commit f7557ae9fe
No known key found for this signature in database
2 changed files with 38 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
require "abstract_command"

View File

@ -0,0 +1,37 @@
# typed: true
# DO NOT EDIT MANUALLY
# This is an autogenerated file for dynamic methods in `Homebrew::DevCmd::VerifyCmd`.
# Please instead update this file by running `bin/tapioca dsl Homebrew::DevCmd::VerifyCmd`.
class Homebrew::DevCmd::VerifyCmd
sig { returns(Homebrew::DevCmd::VerifyCmd::Args) }
def args; end
end
class Homebrew::DevCmd::VerifyCmd::Args < Homebrew::CLI::Args
sig { returns(T.nilable(String)) }
def arch; end
sig { returns(T.nilable(String)) }
def bottle_tag; end
sig { returns(T::Boolean) }
def deps?; end
sig { returns(T::Boolean) }
def f?; end
sig { returns(T::Boolean) }
def force?; end
sig { returns(T::Boolean) }
def j?; end
sig { returns(T::Boolean) }
def json?; end
sig { returns(T.nilable(String)) }
def os; end
end