Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/cli/formatters/sarif.sarif
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"helpUri": "https://htmlhint.com/rules/attr-value-double-quotes",
"help": {
"text": "Attribute values must be in double quotes.",
"markdown": "\nAttribute value must closed by double quotes.\n\nLevel: Error\n\n## Config value\n\n- `true`: enable rule\n- `false`: disable rule\n\n### The following patterns are **not** considered rule violations\n\n```html\n`<a href=\"\" title=\"abc\">``</a>`\n```\n\n### The following pattern is considered a rule violation:\n\n```html\n`<a href='' title='abc'>``</a>`\n```"
"markdown": "\nAttribute value must be closed by double quotes.\n\nLevel: Error\n\n## Config value\n\n- `true`: enable rule\n- `false`: disable rule\n\n### The following patterns are **not** considered rule violations\n\n```html\n`<a href=\"\" title=\"abc\">``</a>`\n```\n\n### The following pattern is considered a rule violation:\n\n```html\n`<a href='' title='abc'>``</a>`\n```"
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Requires attribute values in HTML to be enclosed in double quotes f

import { Badge } from '@astrojs/starlight/components';

Attribute value must closed by double quotes.
Attribute value must be closed by double quotes.

Level: <Badge text="Error" variant="danger" />

Expand Down