mirror of
https://github.com/Homebrew/brew.git
synced 2024-11-25 16:33:34 +08:00
11 lines
226 B
Ruby
11 lines
226 B
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
rule "HB034", "Bare unstyled URL used" do
|
|
tags :links, :url
|
|
aliases "no-bare-unstyled-urls"
|
|
check do |doc|
|
|
doc.matching_text_element_lines(%r{(?<=\s)https?://})
|
|
end
|
|
end
|