Merge pull request #17714 from Homebrew/sorbet-files-update

This commit is contained in:
Patrick Linnane 2024-07-13 18:37:48 -07:00 committed by GitHub
commit 074a8e6a4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
11 changed files with 22 additions and 10 deletions

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
# List of formulae that had a revision in linuxbrew-core

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
require "rubocops/extend/formula_cop"

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
require "rubocops/extend/formula_cop"

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
require "rubocops/extend/formula_cop"

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
require "rubocops/extend/formula_cop"

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
require "rubocops/extend/formula_cop"

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
require "rubocops/extend/formula_cop"

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
require "rubocops/extend/formula_cop"

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
require "rubocops/extend/formula_cop"

View File

@ -1,4 +1,4 @@
# typed: true
# typed: strict
# frozen_string_literal: true
require "rubocops/extend/formula_cop"

View File

@ -11,6 +11,18 @@ class Homebrew::Cmd::TabCmd
end
class Homebrew::Cmd::TabCmd::Args < Homebrew::CLI::Args
sig { returns(T::Boolean) }
def cask?; end
sig { returns(T::Boolean) }
def casks?; end
sig { returns(T::Boolean) }
def formula?; end
sig { returns(T::Boolean) }
def formulae?; end
sig { returns(T::Boolean) }
def installed_on_request?; end