diff --git a/.eslintrc.json b/.eslintrc.json index 09fa5a59cde..1085686e464 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -984,7 +984,8 @@ "TreeDataProvider", "CustomEditorProvider", "CustomReadonlyEditorProvider", - "TerminalLinkProvider" + "TerminalLinkProvider", + "AuthenticationProvider" ] } ], diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 0145dcc867c..f8a21314598 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -12378,7 +12378,6 @@ declare module 'vscode' { * these permissions, otherwise all sessions should be returned. * @returns A promise that resolves to an array of authentication sessions. */ - // eslint-disable-next-line vscode-dts-provider-naming getSessions(scopes?: string[]): Thenable>; /** @@ -12386,14 +12385,12 @@ declare module 'vscode' { * @param scopes A list of scopes, permissions, that the new session should be created with. * @returns A promise that resolves to an authentication session. */ - // eslint-disable-next-line vscode-dts-provider-naming createSession(scopes: string[]): Thenable; /** * Removes the session corresponding to session id. * @param sessionId The id of the session to remove. */ - // eslint-disable-next-line vscode-dts-provider-naming removeSession(sessionId: string): Thenable; }