More lint exclusions

This commit is contained in:
Kolja Lampe
2019-01-27 17:25:44 +01:00
parent bc00e6380f
commit e87fac9c31
2 changed files with 2 additions and 0 deletions

View File

@@ -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);
}
}

View File

@@ -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);