From 377b281b7e08365d0853d85098038996e694df97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Gorej?= Date: Mon, 29 Apr 2024 14:03:31 +0200 Subject: [PATCH] fix(ls): fix JSON Schema deprecated--type lint rule (#4060) --- .../apidom-ls/src/config/common/schema/lint/deprecated--type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/apidom-ls/src/config/common/schema/lint/deprecated--type.ts b/packages/apidom-ls/src/config/common/schema/lint/deprecated--type.ts index ddf19458a4..0c68afdf65 100644 --- a/packages/apidom-ls/src/config/common/schema/lint/deprecated--type.ts +++ b/packages/apidom-ls/src/config/common/schema/lint/deprecated--type.ts @@ -7,7 +7,7 @@ import { OpenAPI3 } from '../../../openapi/target-specs'; const deprecatedTypeLint: LinterMeta = { code: ApilintCodes.SCHEMA_READONLY, - source: 'deprecated', + source: 'apilint', message: 'deprecated must be a boolean', severity: DiagnosticSeverity.Error, linterFunction: 'apilintType',