From 729befa3df8f0df5cb0933b14625c924ff9b5a3e Mon Sep 17 00:00:00 2001 From: coliff Date: Sun, 1 Jun 2025 13:53:09 +0900 Subject: [PATCH] Dependency Update --- .github/dependabot.yml | 6 +++--- htmlhint-server/package-lock.json | 16 ++++++++-------- htmlhint-server/package.json | 4 ++-- htmlhint/README.md | 8 ++++---- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fcf3587..b1fc503 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,7 +16,7 @@ updates: update-types: - "patch" schedule: - interval: monthly + interval: weekly versioning-strategy: increase open-pull-requests-limit: 2 @@ -29,7 +29,7 @@ updates: update-types: - "patch" schedule: - interval: monthly + interval: weekly versioning-strategy: increase open-pull-requests-limit: 2 @@ -42,6 +42,6 @@ updates: update-types: - "patch" schedule: - interval: monthly + interval: weekly versioning-strategy: increase open-pull-requests-limit: 2 diff --git a/htmlhint-server/package-lock.json b/htmlhint-server/package-lock.json index 561cc07..8d4bbd4 100644 --- a/htmlhint-server/package-lock.json +++ b/htmlhint-server/package-lock.json @@ -8,12 +8,12 @@ "name": "htmlhint-server", "version": "1.0.0", "dependencies": { - "htmlhint": "^1.2.0", + "htmlhint": "^1.3.0", "strip-json-comments": "3.1.1", "vscode-languageserver": "3.5.1" }, "devDependencies": { - "@types/node": "^20.17.52", + "@types/node": "20.17.57", "typescript": "^5.8.3" }, "engines": { @@ -21,9 +21,9 @@ } }, "node_modules/@types/node": { - "version": "20.17.52", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.52.tgz", - "integrity": "sha512-2aj++KfxubvW/Lc0YyXE3OEW7Es8TWn1MsRzYgcOGyTNQxi0L8rxQUCZ7ZbyOBWZQD5I63PV9egZWMsapVaklg==", + "version": "20.17.57", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.57.tgz", + "integrity": "sha512-f3T4y6VU4fVQDKVqJV4Uppy8c1p/sVvS3peyqxyWnzkqXFJLRU7Y1Bl7rMS1Qe9z0v4M6McY0Fp9yBsgHJUsWQ==", "dev": true, "license": "MIT", "dependencies": { @@ -140,9 +140,9 @@ } }, "node_modules/htmlhint": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/htmlhint/-/htmlhint-1.2.0.tgz", - "integrity": "sha512-ZUrnX99JOj3IG8W/Dn5wWcZ5mfbJRGeF3whxGKMtUHYHHSrAqdng7KlgHcPr9D5g4WAhTfCCpClsv8WEtxXgrg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/htmlhint/-/htmlhint-1.3.0.tgz", + "integrity": "sha512-rapRu+/KFnok9ehmaE6uQcHT3+ypxkzod6vCjqa7121z7c4dJKCqDk6/Yu4pv1b25xEJY4gkS13lu9MxnVhwMg==", "license": "MIT", "dependencies": { "async": "3.2.6", diff --git a/htmlhint-server/package.json b/htmlhint-server/package.json index 781252f..eefc483 100644 --- a/htmlhint-server/package.json +++ b/htmlhint-server/package.json @@ -8,12 +8,12 @@ "watch": "tsc --watch -p ./src" }, "dependencies": { - "htmlhint": "^1.2.0", + "htmlhint": "^1.3.0", "strip-json-comments": "3.1.1", "vscode-languageserver": "3.5.1" }, "devDependencies": { - "@types/node": "^20.17.52", + "@types/node": "20.17.57", "typescript": "^5.8.3" }, "engines": { diff --git a/htmlhint/README.md b/htmlhint/README.md index 53a5106..9dfe163 100644 --- a/htmlhint/README.md +++ b/htmlhint/README.md @@ -24,7 +24,7 @@ Errors in HTML files are highlighted with squiggles and you can hover over the s ## Rules -The HTMLHint extension uses the default [rules](https://htmlhint.com/docs/user-guide/list-rules) provided by HTMLHint. +The HTMLHint extension uses the default [rules](https://htmlhint.com/list-rules/) provided by HTMLHint. ```json { @@ -45,7 +45,7 @@ The HTMLHint extension uses the default [rules](https://htmlhint.com/docs/user-g If you'd like to modify the rules, you can provide a `.htmlhintrc` file in the root of your project folder with a reduced ruleset or modified values. -You can learn more about rule configuration at the HTMLHint [Usage page](https://htmlhint.com/docs/user-guide/usage/cli). +You can learn more about rule configuration at the HTMLHint [Usage page](https://htmlhint.com/usage/cli/). ## Additional file types @@ -53,7 +53,7 @@ By default, HTMLHint will run on any files associated with the "html" language s ### Option 1: Treating your file like any other HTML file -If you would like the file type to be treated as any other HTML file (including syntax highlighting, as well as HTMLHint linting), you'll need to associate the extension with the HTML language service. Add the following to your VS Code [settings](https://code.visualstudio.com/docs/getstarted/settings), replacing `"*.ext"` with your file extension. +If you would like the file type to be treated as any other HTML file (including syntax highlighting, as well as HTMLHint linting), you'll need to associate the extension with the HTML language service. Add the following to your VS Code [settings](https://code.visualstudio.com/docs/configure/settings), replacing `"*.ext"` with your file extension. ```json { @@ -65,7 +65,7 @@ If you would like the file type to be treated as any other HTML file (including ### Option 2: Associating HTMLHint extension with your file type -If your file type already has an associated language service other than "html", and you'd like HTMLHint to process those file types, you will need to associate the HTMLHint extension with that language service. Add the following to your VS Code [settings](https://code.visualstudio.com/docs/getstarted/settings), replacing `"mylang"` with your language service. For example, if you want HTMLHint to process `.twig` files, you would use `"twig"`. Note that with this configuration, **you need to open an HTML file first** to activate the HTMLHint extension. Otherwise, you won't see any linter errors, (the extension is hard-coded to activate when the HTML language service activates). +If your file type already has an associated language service other than "html", and you'd like HTMLHint to process those file types, you will need to associate the HTMLHint extension with that language service. Add the following to your VS Code [settings](https://code.visualstudio.com/docs/configure/settings), replacing `"mylang"` with your language service. For example, if you want HTMLHint to process `.twig` files, you would use `"twig"`. Note that with this configuration, **you need to open an HTML file first** to activate the HTMLHint extension. Otherwise, you won't see any linter errors, (the extension is hard-coded to activate when the HTML language service activates). ```json {