docs: brew style --fix

This commit is contained in:
Mike McQuaid 2024-06-13 09:41:31 +01:00
parent 349627e3dd
commit 1b8bddd8bf
No known key found for this signature in database
5 changed files with 19 additions and 12 deletions

View File

@ -1,6 +1,9 @@
rule 'HB034', 'Bare unstyled URL used' do # typed: true
# frozen_string_literal: true
rule "HB034", "Bare unstyled URL used" do
tags :links, :url tags :links, :url
aliases 'no-bare-unstyled-urls' aliases "no-bare-unstyled-urls"
check do |doc| check do |doc|
doc.matching_text_element_lines(%r{(?<=\s)https?://}) doc.matching_text_element_lines(%r{(?<=\s)https?://})
end end

View File

@ -1,8 +1,11 @@
# typed: true
# frozen_string_literal: true
all all
rule 'MD007', indent: 2 # Unordered list indentation rule "MD007", indent: 2 # Unordered list indentation
rule 'MD026', punctuation: ',;:' # Trailing punctuation in header rule "MD026", punctuation: ",;:" # Trailing punctuation in header
exclude_rule 'MD013' # Line length exclude_rule "MD013" # Line length
exclude_rule 'MD029' # Ordered list item prefix exclude_rule "MD029" # Ordered list item prefix
exclude_rule 'MD033' # Inline HTML exclude_rule "MD033" # Inline HTML
exclude_rule 'MD034' # Bare URL used (replaced by HB034) exclude_rule "MD034" # Bare URL used (replaced by HB034)
exclude_rule 'MD046' # Code block style exclude_rule "MD046" # Code block style

View File

@ -2,9 +2,6 @@ inherit_from: ../Library/.rubocop.yml
AllCops: AllCops:
Exclude: Exclude:
- Gemfile
- ".mdl*.rb"
- Rakefile
- "_site/**/*" - "_site/**/*"
- Manpage.md - Manpage.md
- "vendor/**/*" - "vendor/**/*"

View File

@ -1,3 +1,5 @@
# frozen_string_literal: true
source "https://rubygems.org" source "https://rubygems.org"
ruby file: ".ruby-version" ruby file: ".ruby-version"

View File

@ -1,3 +1,5 @@
# frozen_string_literal: true
require "rake" require "rake"
task default: :build task default: :build