Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"nvmrc",
"ruleset",
"tagname",
"vite",
"VSIX"
],
"flagWords": [
Expand Down
2 changes: 1 addition & 1 deletion htmlhint-server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion htmlhint-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"devDependencies": {
"@types/node": "22.15.31",
"typescript": "^5.2.2"
"typescript": "^5.4.0"
},
"engines": {
"node": "*"
Expand Down
6 changes: 3 additions & 3 deletions htmlhint/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let outputChannel: vscode.OutputChannel;

export function activate(context: vscode.ExtensionContext) {
// Create output channel for logging
outputChannel = vscode.window.createOutputChannel("HTML-hint");
outputChannel = vscode.window.createOutputChannel("HTMLHint");
context.subscriptions.push(outputChannel);

// Register the create config command
Expand Down Expand Up @@ -90,8 +90,8 @@ export function activate(context: vscode.ExtensionContext) {

// Create the language client and start it
client = new LanguageClient(
"HTML-hint",
"HTML-hint",
"HTMLHint",
"HTMLHint",
serverOptions,
clientOptions,
);
Expand Down
6 changes: 3 additions & 3 deletions htmlhint/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions htmlhint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "HTMLHint",
"description": "VS Code integration for HTMLHint - A Static Code Analysis Tool for HTML",
"icon": "images/icon.png",
"version": "1.9.0",
"version": "1.9.1",
"publisher": "HTMLHint",
"galleryBanner": {
"color": "#333333",
Expand Down Expand Up @@ -88,7 +88,7 @@
"devDependencies": {
"@types/node": "^22.15.31",
"@types/vscode": "^1.89.0",
"typescript": "^5.2.2",
"typescript": "^5.4.0",
"vscode-test": "^1.6.1"
},
"dependencies": {
Expand Down
Loading