enable @typescript-eslint/member-delimiter-style, https://github.com/microsoft/vscode/issues/140391

This commit is contained in:
Johannes Rieken
2022-02-02 14:34:41 +01:00
parent 5abc4e0071
commit 4a130c40ed
954 changed files with 3017 additions and 3016 deletions

View File

@@ -58,9 +58,9 @@ interface IStoredSession {
scope: string; // Scopes are alphabetized and joined with a space
account: {
label?: string;
displayName?: string,
id: string
}
displayName?: string;
id: string;
};
}
export interface ITokenResponse {
@@ -79,11 +79,11 @@ export interface IMicrosoftTokens {
}
interface IScopeData {
scopes: string[],
scopeStr: string,
scopesToSend: string,
clientId: string,
tenant: string
scopes: string[];
scopeStr: string;
scopesToSend: string;
clientId: string;
tenant: string;
}
function parseQuery(uri: vscode.Uri) {