diff --git a/.markdownlint.yml b/.markdownlint.yml index 5a9e1f05e0e..4107e8d1073 100644 --- a/.markdownlint.yml +++ b/.markdownlint.yml @@ -1,31 +1,39 @@ --- # Base Markdownlint configuration # Extended Markdownlint configuration in doc/.markdownlint/ +# See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md for explanations of each rule +# First, set the default default: true -first-header-h1: true -header-style: - style: "atx" -ul-style: - style: "dash" -no-trailing-spaces: false -line-length: false -no-duplicate-header: - allow_different_nesting: true -no-trailing-punctuation: - punctuation: ".,;:!。,;:!?" -ol-prefix: - style: "one" -no-inline-html: false -hr-style: - style: "---" -no-emphasis-as-heading: false -first-line-h1: false -code-block-style: + +# Per-rule settings in alphabetical order +code-block-style: # MD046 style: "fenced" -emphasis-style: false -link-fragments: false -reference-links-images: false -proper-names: +emphasis-style: false # MD049 +first-header-h1: true # MD002 +first-line-h1: false # MD041 +header-style: # MD003 + style: "atx" +hr-style: # MD035 + style: "---" +line-length: false # MD013 +link-fragments: false # MD051 +no-duplicate-header: # MD024 + allow_different_nesting: true +no-emphasis-as-heading: false # MD036 +no-inline-html: false # MD033 +no-trailing-punctuation: # MD026 + punctuation: ".,;:!。,;:!?" +no-trailing-spaces: false # MD009 +ol-prefix: # MD029 + style: "one" +reference-links-images: false # MD052 +ul-style: # MD004 + style: "dash" + +# Keep this item last due to length +proper-names: # MD044 + code_blocks: false + html_elements: false names: [ "Akismet", "Alertmanager", @@ -150,5 +158,3 @@ proper-names: "YAML", "YouTrack" ] - code_blocks: false - html_elements: false diff --git a/Gemfile.checksum b/Gemfile.checksum index 7a8040c629c..7c3fe677ea8 100644 --- a/Gemfile.checksum +++ b/Gemfile.checksum @@ -492,7 +492,7 @@ {"name":"rails","version":"7.0.8","platform":"ruby","checksum":"8e43af921acf766fb429126f020ec90c3b25809631f8fbdff95c3553828d5867"}, {"name":"rails-controller-testing","version":"1.0.5","platform":"ruby","checksum":"741448db59366073e86fc965ba403f881c636b79a2c39a48d0486f2607182e94"}, {"name":"rails-dom-testing","version":"2.0.3","platform":"ruby","checksum":"b140c4f39f6e609c8113137b9a60dfc2ecb89864e496f87f23a68b3b8f12d8d1"}, -{"name":"rails-html-sanitizer","version":"1.5.0","platform":"ruby","checksum":"bf326075e8a968cd882c30b15a4c9100059be3af2356093dc68324ec3bd9ea79"}, +{"name":"rails-html-sanitizer","version":"1.6.0","platform":"ruby","checksum":"86e9f19d2e6748890dcc2633c8945ca45baa08a1df9d8c215ce17b3b0afaa4de"}, {"name":"rails-i18n","version":"7.0.3","platform":"ruby","checksum":"e3158e98c5332d129fd5131f171ac575eb30dbb8919b21595382b08850cf2bd3"}, {"name":"railties","version":"7.0.8","platform":"ruby","checksum":"12325c3933efd33f8ead640197dec3b8c27c8d45607dd68b7b925896bf09cc69"}, {"name":"rainbow","version":"3.1.1","platform":"ruby","checksum":"039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a"}, diff --git a/Gemfile.lock b/Gemfile.lock index ba111827700..c7be326191a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1324,8 +1324,9 @@ GEM rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) rails-i18n (7.0.3) i18n (>= 0.7, < 2) railties (>= 6.0.0, < 8) diff --git a/app/assets/javascripts/groups/components/overview_tabs.vue b/app/assets/javascripts/groups/components/overview_tabs.vue index 8781f03a412..82bd4765986 100644 --- a/app/assets/javascripts/groups/components/overview_tabs.vue +++ b/app/assets/javascripts/groups/components/overview_tabs.vue @@ -1,5 +1,5 @@