Skip to content

Commit 546fec5

Browse files
authored
Merge pull request #232 from htmlhint/dev/coliff/release-v141
Release v1.4.1
2 parents cfa9c70 + a5def97 commit 546fec5

File tree

7 files changed

+28
-14
lines changed

7 files changed

+28
-14
lines changed

htmlhint/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to the "vscode-htmlhint" extension will be documented in this file.
44

5+
### v1.4.1 (2025-06-04)
6+
7+
- Minor optimizations and code cleanup
8+
9+
### v1.4.0 (2025-06-03)
10+
11+
- Update HTMLHint to v1.4.0
12+
513
### v1.3.0 (2025-06-01)
614

715
- Update HTMLHint to v1.3.0

htmlhint/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.

htmlhint/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "HTMLHint",
44
"description": "VS Code integration for HTMLHint - A Static Code Analysis Tool for HTML",
55
"icon": "images/icon.png",
6-
"version": "1.4.0",
6+
"version": "1.4.1",
77
"publisher": "HTMLHint",
88
"galleryBanner": {
99
"color": "#333333",
@@ -70,7 +70,7 @@
7070
"vscode:prepublish": "npm run compile && npm run bundle-dependencies",
7171
"compile": "tsc -p ./",
7272
"watch": "tsc -watch -p ./",
73-
"bundle-dependencies": "npm install --no-package-lock --no-save htmlhint@^1.3.0 strip-json-comments@3.1.1 vscode-languageserver@3.5.1"
73+
"bundle-dependencies": "npm install --no-package-lock --no-save htmlhint@1.4.0 strip-json-comments@3.1.1 vscode-languageserver@3.5.1"
7474
},
7575
"devDependencies": {
7676
"typescript": "^5.2.2",
@@ -89,6 +89,6 @@
8989
"strip-json-comments"
9090
],
9191
"volta": {
92-
"node": "18.20.7"
92+
"node": "20.19.2"
9393
}
94-
}
94+
}

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343
"vscode-test": "^1.6.1"
4444
},
4545
"engines": {
46-
"node": ">= 18"
46+
"node": ">= 20"
4747
},
4848
"volta": {
49-
"node": "18.20.7"
49+
"node": "20.19.2"
5050
}
5151
}

test/testConfigFile/.htmlhintrc

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
{
2-
"tagname-lowercase": true,
32
"attr-lowercase": true,
3+
"attr-no-duplication": true,
44
"attr-value-double-quotes": true,
55
"doctype-first": true,
6-
"html-lang-require": true,
76
"h1-require": true,
7+
"html-lang-require": true,
8+
"id-unique": true,
89
"main-require": true,
9-
"tag-pair": true,
10+
"meta-description-require": true,
11+
"meta-viewport-require": true,
1012
"spec-char-escape": true,
11-
"id-unique": true,
1213
"src-not-empty": true,
13-
"attr-no-duplication": true,
14+
"tag-pair": true,
15+
"tagname-lowercase": true,
1416
"title-require": true
1517
}

test/testConfigFile/test.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<!doctype html>
22
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Test Config File</title>
6+
</head>
37
<body>
48
<ul>
59
<li>

0 commit comments

Comments
 (0)