Merge pull request #8070 from vidusheeamoli/cli-args-to-true

sorbet: add cli/args.rb to true
This commit is contained in:
Issy Long 2020-07-23 21:28:22 +01:00 committed by GitHub
commit 2dd82d53f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 1 deletions

View File

@ -82,7 +82,6 @@ false:
- ./cask/verify.rb
- ./caveats.rb
- ./cleanup.rb
- ./cli/args.rb
- ./cli/parser.rb
- ./cmd/--cache.rb
- ./cmd/--cellar.rb
@ -836,6 +835,7 @@ true:
- ./cask/url.rb
- ./checksum.rb
- ./cleaner.rb
- ./cli/args.rb
- ./compat/extend/nil.rb
- ./compat/extend/string.rb
- ./compat/formula.rb

View File

@ -0,0 +1,19 @@
# typed: strict
module Homebrew::CLI
class Args < OpenStruct
def devel?; end
def HEAD?; end
def include_test?; end
def build_bottle?; end
def build_universal?; end
def build_from_source?; end
def named_args; end
end
end