We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b335a commit a09803fCopy full SHA for a09803f
Library/Homebrew/api/cask.rb
@@ -92,11 +92,14 @@ def self.all_renames
92
end
93
94
sig { params(regenerate: T::Boolean).void }
95
+ # This is not a predicate method (return type is `void`).
96
+ # rubocop:disable Naming/PredicateMethod
97
def self.write_names(regenerate: false)
98
download_and_cache_data! unless cache.key?("casks")
99
100
Homebrew::API.write_names_file?(all_casks.keys, "cask", regenerate:)
101
102
+ # rubocop:enable Naming/PredicateMethod
103
104
105
0 commit comments