Skip to content

Commit

Permalink
Removing quotes around message text in yaml files.
Browse files Browse the repository at this point in the history
  • Loading branch information
wmat committed Nov 15, 2024
1 parent 8e5abba commit 5786651
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/ClosedAttributeBlocks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
extends: existence
scope: raw
level: error
message: "Attribute block is not closed."
message: Attribute block is not closed.
raw:
- '(?<!.)(\[(?!{)[^\]\n]+)\n'
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/ClosedIdQuotes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
extends: existence
scope: raw
level: error
message: "Quoted ID value is not closed."
message: Quoted ID value is not closed.
raw:
- '(?<!.)\[id=(["\x27]).*(?<!\1)\]'
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/ImageContainsAltText.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ extends: existence
scope: raw
level: warning
link: https://redhat-documentation.github.io/supplementary-style-guide/#cloud-services-images
message: "Image is missing accessibility alt tags."
message: Image is missing accessibility alt tags.
raw:
- 'image::?.*\[\]'
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/LinkContainsLinkText.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ level: warning
ignorecase: true
nonword: true
link: https://redhat-documentation.github.io/supplementary-style-guide/#cloud-services-links-hypertext
message: "Link is missing descriptive link text for accessibility."
message: Link is missing descriptive link text for accessibility.
raw:
- 'link:.*(\[\]|\[click here\]|\[here\]|\[this\])'
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/MatchingDotCallouts.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
extends: script
message: "Corresponding callout not found."
message: Corresponding callout not found.
level: warning
link: https://docs.asciidoctor.org/asciidoc/latest/verbatim/callouts/
scope: raw
Expand Down
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/MatchingNumberedCallouts.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
extends: script
message: "Corresponding callout not found."
message: Corresponding callout not found.
level: warning
link: https://docs.asciidoctor.org/asciidoc/latest/verbatim/callouts/
scope: raw
Expand Down
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/SequentialNumberedCallouts.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
extends: script
message: "Numbered callout does not follow sequentially."
message: Numbered callout does not follow sequentially.
level: warning
link: https://docs.asciidoctor.org/asciidoc/latest/verbatim/callouts/
scope: raw
Expand Down
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/UnsetAttributes.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
extends: script
level: warning
message: "Set attribute directive does not have a corresponding unset attribute directive."
message: Set attribute directive does not have a corresponding unset attribute directive.
link: https://docs.asciidoctor.org/asciidoc/latest/attributes/unset-attributes/#unset-a-document-attribute-in-the-body
scope: raw
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/ValidAdmonitionBlocks.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
extends: script
level: error
message: "Unterminated admonition block found in file."
message: Unterminated admonition block found in file.
link: https://docs.asciidoctor.org/asciidoc/latest/blocks/admonitions/
scope: raw
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/ValidCodeBlocks.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
extends: script
level: error
message: "Unterminated listing block found in file."
message: Unterminated listing block found in file.
link: https://docs.asciidoctor.org/asciidoc/latest/verbatim/listing-blocks/
scope: raw
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/ValidConditions.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
extends: script
level: error
message: "File contains unbalanced if statements. Review the file to ensure it contains matching opening and closing if statements."
message: File contains unbalanced if statements. Review the file to ensure it contains matching opening and closing if statements.
link: https://docs.asciidoctor.org/asciidoc/latest/directives/ifdef-ifndef/
scope: raw
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/styles/AsciiDoc/ValidTableBlocks.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
extends: script
level: error
message: "Unterminated table block found in file."
message: Unterminated table block found in file.
link: https://docs.asciidoctor.org/asciidoc/latest/tables/build-a-basic-table/
scope: raw
script: |
Expand Down

0 comments on commit 5786651

Please sign in to comment.