Skip to content

Commit 5220a9e

Browse files
committed
Resolve linting errors
1 parent 0be647a commit 5220a9e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

server

Submodule server updated 104 files

src/utils/LicensingUtils.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ export function getMinimalLicensingInfo (): string {
2929
*/
3030
export function setupLicensingListeners (client: LanguageClient): void {
3131
if (!isInitialized) {
32+
// eslint-disable-next-line @typescript-eslint/no-misused-promises
3233
licensingUrlNotificationListener = client.onNotification(Notification.LicensingServerUrl, async (url: string) => {
3334
const result = await vscode.window.showInformationMessage(
3435
'Sign in required to open MATLAB. Click OK to open your system browser and sign in.',
3536
'OK'
36-
);
37+
);
3738

38-
if (result === 'OK') {
39+
if (result === 'OK') {
3940
void openUrlInExternalBrowser(url);
40-
}
41-
41+
}
4242
})
4343
licensingDataNotificationListener = client.onNotification(Notification.LicensingData, (data: string) => {
4444
minimalLicensingInfo = data

0 commit comments

Comments
 (0)