Skip to content

Commit 3666833

Browse files
authored
Release v1.3.0 (#1611)
1 parent 0a0056a commit 3666833

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "htmlhint",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "The Static Code Analysis Tool for your HTML",
55
"keywords": [
66
"html",

website/src/content/docs/changelog.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ description: The release notes for HTMLHint, see what's changed with each new ve
55

66
import { Badge } from '@astrojs/starlight/components'
77

8+
## 1.3.0 _(2025-05-31)_
9+
10+
- <Badge text="Feat" size="small" /> New rule: main-require
11+
[#1608](https://github.com/htmlhint/HTMLHint/issues/1608)
12+
- <Badge text="Feat" size="small" /> New rule: h1-require
13+
[#1605](https://github.com/htmlhint/HTMLHint/issues/1605)
14+
- <Badge text="Feat" size="small" /> Sort data-* attributes at end
15+
[#1591](https://github.com/htmlhint/HTMLHint/issues/1591)
16+
- <Badge text="Feat" size="small" /> Add rel to list of sorted attributes
17+
[#1579](https://github.com/htmlhint/HTMLHint/issues/1579)
18+
- <Badge text="Fix" size="small" variant="danger" /> npx htmlhint -l doesn't list rules alphabetically
19+
[#1598](https://github.com/htmlhint/HTMLHint/issues/1598)
20+
- <Badge text="Fix" size="small" variant="danger" /> doctype-first does not account for comments being permitted beforehand
21+
[#1610](https://github.com/htmlhint/HTMLHint/issues/1610)
22+
823
## 1.2.0 _(2025-05-26)_
924

1025
- <Badge text="Feat" size="small" /> Sort unknown attributes alphabetically

website/src/content/docs/rules/h1-require.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ id: h1-require
33
title: h1-require
44
description: Ensures that an HTML document contains at least one `<h1>` element for proper document structure and accessibility.
55
sidebar:
6-
hidden: true
76
badge: New
87
---
98
import { Badge } from '@astrojs/starlight/components';

website/src/content/docs/rules/main-require.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ id: main-require
33
title: main-require
44
description: Ensures that an HTML document contains a `<main>` element within the `<body>` tag for proper document structure and accessibility.
55
sidebar:
6-
hidden: true
76
badge: New
87
---
98
import { Badge } from '@astrojs/starlight/components';

0 commit comments

Comments
 (0)