@davidsneighbour/htmlvalidate-config 5.5.2 → 5.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/index.js +8 -0
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.5.4](https://github.com/davidsneighbour/configurations/compare/v5.5.3...v5.5.4) (2023-10-21)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * disable integrity attribute (waiting for upstream fix) ([e2a8ac0](https://github.com/davidsneighbour/configurations/commit/e2a8ac03a23595e6ea37a4a7b632a9d8f8c7f494))
12
+
13
+
14
+
15
+
16
+
17
+ ## [5.5.3](https://github.com/davidsneighbour/configurations/compare/v5.5.2...v5.5.3) (2023-10-18)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **deps:** update dependency html-validate to v8.6.0 ([#973](https://github.com/davidsneighbour/configurations/issues/973)) ([3c9202f](https://github.com/davidsneighbour/configurations/commit/3c9202f8a72427ecf6c7848bfb042151c1bdd614))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [5.5.2](https://github.com/davidsneighbour/configurations/compare/v5.5.1...v5.5.2) (2023-10-08)
7
29
 
8
30
  **Note:** Version bump only for package @davidsneighbour/htmlvalidate-config
package/index.js CHANGED
@@ -1,6 +1,14 @@
1
1
  module.exports = {
2
2
  extends: ["html-validate:recommended"],
3
3
  rules: {
4
+ "attribute-misuse": [
5
+ "error",
6
+ {
7
+ allowed: [
8
+ "integrity",
9
+ ]
10
+ }
11
+ ],
4
12
  "long-title": [
5
13
  "error",
6
14
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@davidsneighbour/htmlvalidate-config",
3
3
  "description": "HTML Validate configuration for use in @davidsneighbour projects.",
4
- "version": "5.5.2",
4
+ "version": "5.5.4",
5
5
  "license": "MIT",
6
6
  "repository": "davidsneighbour/configurations",
7
7
  "author": "Patrick Kollitsch <patrick@davids-neighbour.com> (https://davids-neighbour.com)",
@@ -9,7 +9,7 @@
9
9
  "homepage": "https://github.com/davidsneighbour/configurations/tree/main/packages/htmlvalidate-config",
10
10
  "dependencies": {
11
11
  "axe-core": "4.8.2",
12
- "html-validate": "8.5.0"
12
+ "html-validate": "8.6.0"
13
13
  },
14
14
  "scripts": {
15
15
  "update": "npm-check-updates -u && npm install && git add package* && fixpack && git commit -m \"chore(deps): update dependencies\""
@@ -19,5 +19,5 @@
19
19
  "node": ">=18.0.0",
20
20
  "npm": ">=8.0.0"
21
21
  },
22
- "gitHead": "0d28714093409359c0d4247b6255359f08b388c5"
22
+ "gitHead": "0a57bc0810104db0daadb8df1c650173d4fa8ef9"
23
23
  }