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
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 @@ -14,7 +14,7 @@
},
"devDependencies": {
"@types/node": "20.17.57",
"typescript": "^5.8.3"
"typescript": "^5.2.2"
},
"engines": {
"node": "*"
Expand Down
4 changes: 2 additions & 2 deletions htmlhint-server/src/server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

/// <reference path="typings/node/node.d.ts" />
/// <reference path="typings/htmlhint/htmlhint.d.ts" />
/// <reference path="typings-custom/thenable.d.ts" />
/// <reference path="typings-custom/htmlhint.d.ts" />

import * as path from "path";
import * as server from "vscode-languageserver";
Expand Down
6 changes: 1 addition & 5 deletions htmlhint/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,7 @@ export function activate(context: ExtensionContext) {
};

// Create the language client and start it
let client = new LanguageClient(
"HTML-hint",
serverOptions,
clientOptions
);
let client = new LanguageClient("HTML-hint", serverOptions, clientOptions);

// Start the client and add it to the subscriptions
let disposable = client.start();
Expand Down
Loading