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

@@ -14,7 +14,7 @@ const iframeSrc = urlSearchParams.get("iframeSrc") || "explorer.html?platform=Po
if (!process.env.AZURE_CLIENT_SECRET) {
throw new Error(
"process.env.AZURE_CLIENT_SECRET was not set! Set it in your .env file and restart webpack dev server"
"process.env.AZURE_CLIENT_SECRET was not set! Set it in your .env file and restart webpack dev server",
);
}
@@ -25,7 +25,7 @@ const credentials = new ClientSecretCredential(
process.env.AZURE_CLIENT_SECRET,
{
authorityHost: "https://localhost:1234",
}
},
);
console.log("Resource Group:", resourceGroup);
@@ -85,11 +85,11 @@ const initTestExplorer = async (): Promise<void> => {
signature: "pcIframe",
data: initTestExplorerContent,
},
iframe.contentDocument.referrer || window.location.href
iframe.contentDocument.referrer || window.location.href,
);
}
},
false
false,
);
iframe.id = "explorerMenu";
iframe.name = "explorer";