
- The `on_url_stanza` method is now used in two cops, `Url` and `UrlLegacyCommaSeparators`. Make the latter inherit from the former to make Sorbet happy. - The style and typecheck checks now pass fine.
6 lines
108 B
Ruby
6 lines
108 B
Ruby
# typed: strict
|
|
|
|
module RuboCop::Cop::Cask::OnUrlStanza
|
|
requires_ancestor { RuboCop::Cop::Cask::Url }
|
|
end
|