mirror of
https://github.com/jlengrand/elm-language-client-vscode.git
synced 2026-03-10 08:11:17 +00:00
More lint exclusions
This commit is contained in:
@@ -24,6 +24,7 @@ export async function activate(docUri: vscode.Uri) {
|
||||
editor = await vscode.window.showTextDocument(doc);
|
||||
await sleep(2000); // Wait for server activation
|
||||
} catch (e) {
|
||||
// tslint:disable-next-line:no-console
|
||||
console.error(e);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,6 +27,7 @@ export class Server implements ILanguageServer {
|
||||
}
|
||||
|
||||
private registerProviders(): void {
|
||||
// tslint:disable-next-line:no-unused-expression
|
||||
new ASTProvider(this.connection, this.forest);
|
||||
// new DocumentHighlightProvider(this.connection, this.forest);
|
||||
// new FoldingRangeProvider(this.connection, this.forest);
|
||||
|
||||
Reference in New Issue
Block a user