Fix nightly breaks because of jsdoc tag name rule (#65781)

This commit is contained in:
Sheetal Nandi
2023-06-14 10:53:53 -07:00
committed by GitHub
parent 4a032af1ea
commit 296c0a0919
3 changed files with 4 additions and 2 deletions

View File

@@ -16,6 +16,7 @@ module.exports = {
// Additionally, some may need to be contributed to eslint-plugin-jsdoc.
definedTags: [
'addVersion',
'also',
'api',
'author',
'beta',
@@ -50,6 +51,7 @@ module.exports = {
'hidden',
'id',
'jsx',
'jsxImportSource',
'label',
'language',
'legacy',

View File

@@ -249,7 +249,7 @@ declare namespace CKEDITOR {
throttle(minInterval: number, output: () => void, contextObject?: unknown): tools.buffers.throttle;
/**
* @version: 4.5.0
* @version 4.5.0
*/
transformPlainTextToHtml(text: string, enterMode: number): string;

View File

@@ -15907,7 +15907,7 @@ declare module 'vscode' {
* @param id The unique identifier of the provider.
* @param label The human-readable name of the provider.
* @param provider The authentication provider provider.
* @params options Additional options for the provider.
* @param options Additional options for the provider.
* @return A {@link Disposable} that unregisters this provider when being disposed.
*/
export function registerAuthenticationProvider(id: string, label: string, provider: AuthenticationProvider, options?: AuthenticationProviderOptions): Disposable;