{"id":18980968,"url":"https://github.com/htmlhint/vscode-htmlhint","last_synced_at":"2026-03-15T21:06:05.111Z","repository":{"id":43493881,"uuid":"408625442","full_name":"htmlhint/vscode-htmlhint","owner":"htmlhint","description":"VS Code integration of HTMLHint, an HTML linter.","archived":false,"fork":false,"pushed_at":"2025-03-18T13:33:43.000Z","size":2156,"stargazers_count":18,"open_issues_count":8,"forks_count":6,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-16T15:15:28.119Z","etag":null,"topics":["vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=HTMLHint.vscode-htmlhint","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/htmlhint.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"open_collective":"htmlhint"}},"created_at":"2021-09-20T23:04:47.000Z","updated_at":"2025-04-03T08:52:33.000Z","dependencies_parsed_at":"2023-02-17T13:01:34.816Z","dependency_job_id":"e555b1e7-5db4-4e7b-8bbb-0fff075f3876","html_url":"https://github.com/htmlhint/vscode-htmlhint","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/htmlhint%2Fvscode-htmlhint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/htmlhint%2Fvscode-htmlhint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/htmlhint%2Fvscode-htmlhint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/htmlhint%2Fvscode-htmlhint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/htmlhint","download_url":"https://codeload.github.com/htmlhint/vscode-htmlhint/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249779316,"owners_count":21324393,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["vscode","vscode-extension"],"created_at":"2024-11-08T16:08:18.467Z","updated_at":"2026-03-15T21:06:05.107Z","avatar_url":"https://github.com/htmlhint.png","language":"TypeScript","funding_links":["https://opencollective.com/htmlhint"],"categories":[],"sub_categories":[],"readme":"# HTMLHint - Visual Studio Code Extension\n\nVS Code extension to support HTMLHint, an HTML linter.\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://marketplace.visualstudio.com/items?itemName=HTMLHint.vscode-htmlhint\"\u003e\n    \u003cimg alt=\"Visual Studio Marketplace Version\" src=\"https://img.shields.io/visual-studio-marketplace/v/HTMLHint.vscode-htmlhint\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://marketplace.visualstudio.com/items?itemName=HTMLHint.vscode-htmlhint\"\u003e\n    \u003cimg alt=\"VS Code Marketplace Downloads\" src=\"https://img.shields.io/visual-studio-marketplace/d/HTMLHint.vscode-htmlhint\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://marketplace.visualstudio.com/items?itemName=HTMLHint.vscode-htmlhint\"\u003e\n    \u003cimg alt=\"VS Code Marketplace Installs\" src=\"https://img.shields.io/visual-studio-marketplace/i/HTMLHint.vscode-htmlhint\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://marketplace.visualstudio.com/items?itemName=HTMLHint.vscode-htmlhint\"\u003e\n    \u003cimg alt=\"VS Code Marketplace Ratings\" src=\"https://img.shields.io/visual-studio-marketplace/r/HTMLHint.vscode-htmlhint\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Installation\n\nInstall through VS Code extensions. Search for `HTMLHint` and install the extension.\n\n- [Visual Studio Code Marketplace: HTMLHint](https://marketplace.visualstudio.com/items?itemName=HTMLHint.vscode-htmlhint)\n- [Open VSX Registry: HTMLHint](https://open-vsx.org/extension/HTMLHint/vscode-htmlhint)\n\nAlternatively, launch VS Code Quick Open (`Ctrl`+`P`), paste the following command, and press enter.\n\n```txt\next install HTMLHint.vscode-htmlhint\n```\n\n## Development setup\n\n- run `npm install` inside the `htmlhint` and `htmlhint-server` folders\n- run `npm run compile` inside the `htmlhint` and `htmlhint-server` folders\n- open VS Code on this folder\n- Press Ctrl+Shift+B to compile the client and server\n- Switch to the Debug viewlet\n- Select `Launch Client` from the drop down\n- Run the launch config\n- open VS Code on `htmlhint` and `htmlhint-server`\n\n## Developing the server\n\n- open VS Code on `htmlhint-server`\n- run `npm run compile` or `npm run watch` to build the server and copy it into the `htmlhint` folder\n- to debug press F5 which attaches a debugger to the server\n\n## Developing the extension/client\n\n- open VS Code on `htmlhint`\n- run F5 to build and debug the extension\n\n## Building the Extension\n\n- run `vsce package` in extension root folder to create the VSIX file.\n\n## Releasing a new version\n\n- update the version in the `package.json` file\n- update the `CHANGELOG.md` file\n- run `npm run package` in the extension root folder to create the VSIX file\n- upload the VSIX file to the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=HTMLHint.vscode-htmlhint)\n- upload the VSIX file to the [Open VSX Registry](https://open-vsx.org/user-settings/extensions)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhtmlhint%2Fvscode-htmlhint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhtmlhint%2Fvscode-htmlhint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhtmlhint%2Fvscode-htmlhint/lists"}