Update prettier to latest. Remove tslint (#1641)

* Rev up prettier

* Reformat

* Remove deprecated tslint

* Remove call to tslint and update package-lock.json
This commit is contained in:
Laurent Nguyen
2023-10-03 15:13:24 +00:00
committed by GitHub
parent e3c168b7be
commit 90c1439d34
311 changed files with 1899 additions and 2194 deletions

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<title>Notebook</title>

View File

@@ -75,7 +75,7 @@ const initTerminal = async (props: TerminalProps): Promise<ITerminalConnection |
const closeTab = (tabId: string): void => {
window.parent.postMessage(
{ type: MessageTypes.CloseTab, data: { tabId: tabId }, signature: "pcIframe" },
window.document.referrer
window.document.referrer,
);
};
@@ -92,7 +92,7 @@ const main = async (): Promise<void> => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const props = (event as any).data as TerminalProps;
session = await initTerminal(props);
}
},
);
postRobot.on(
@@ -107,7 +107,7 @@ const main = async (): Promise<void> => {
if (session) {
session.send(message);
}
}
},
);
};