editor.quicksSuggestions.other defaults off

This commit is contained in:
Francesco Stasi
2021-03-15 09:23:20 +01:00
committed by Francesco Stasi
parent 067cc8766a
commit 6dadd1775a
13 changed files with 65 additions and 22 deletions

View File

@@ -54,7 +54,7 @@ export class CoreClientProvider extends GrpcClientProvider<CoreClientProvider.Cl
const instance = initResp.getInstance();
if (!instance) {
throw new Error(`Could not retrieve instance from the initialize response.`);
throw new Error('Could not retrieve instance from the initialize response.');
}
// No `await`. The index update event comes later. This way we do not block app startup with index update when invalid proxy is given.

View File

@@ -122,9 +122,9 @@ export class MonitorServiceImpl implements MonitorService {
if (!this.connection && reason && reason.code === MonitorError.ErrorCodes.CLIENT_CANCEL) {
return Status.OK;
}
this.logger.info(`>>> Disposing monitor connection...`);
this.logger.info('>>> Disposing monitor connection...');
if (!this.connection) {
this.logger.warn(`<<< Not connected. Nothing to dispose.`);
this.logger.warn('<<< Not connected. Nothing to dispose.');
return Status.NOT_CONNECTED;
}
const { duplex, config } = this.connection;

View File

@@ -53,7 +53,7 @@ export class NotificationServiceServerImpl implements NotificationServiceServer
disposeClient(client: NotificationServiceClient): void {
const index = this.clients.indexOf(client);
if (index === -1) {
console.warn(`Could not dispose notification service client. It was not registered.`);
console.warn('Could not dispose notification service client. It was not registered.');
return;
}
this.clients.splice(index, 1);