diff --git a/.eslintrc.cjs b/.eslintrc.cjs index cfff2d81a9..75d737c8bc 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -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', diff --git a/types/ckeditor4/core/tools.d.ts b/types/ckeditor4/core/tools.d.ts index 54f00a94a3..2c87d4ebd0 100644 --- a/types/ckeditor4/core/tools.d.ts +++ b/types/ckeditor4/core/tools.d.ts @@ -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; diff --git a/types/vscode/index.d.ts b/types/vscode/index.d.ts index 6fcb647559..e36f50e0da 100644 --- a/types/vscode/index.d.ts +++ b/types/vscode/index.d.ts @@ -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;