This commit is contained in:
Martin Aeschlimann 2021-05-12 18:32:23 +02:00
parent ae9e867dc6
commit cfe53c2e15
No known key found for this signature in database
GPG key ID: 2609A01E695523E3
2 changed files with 2 additions and 2 deletions

2
monaco.d.ts vendored
View file

@ -8,7 +8,7 @@
declare namespace monaco.languages.json { declare namespace monaco.languages.json {
export interface DiagnosticsOptions { export interface DiagnosticsOptions {
/** /**
* If set, the validator will be enabled and perform syntax and validation schema based validation, * If set, the validator will be enabled and perform syntax and schema based validation,
* unless `DiagnosticsOptions.schemaValidation` is set to `ignore`. * unless `DiagnosticsOptions.schemaValidation` is set to `ignore`.
*/ */
readonly validate?: boolean; readonly validate?: boolean;

View file

@ -10,7 +10,7 @@ import { Emitter, IEvent, languages } from './fillers/monaco-editor-core';
export interface DiagnosticsOptions { export interface DiagnosticsOptions {
/** /**
* If set, the validator will be enabled and perform syntax and validation schema based validation, * If set, the validator will be enabled and perform syntax and schema based validation,
* unless `DiagnosticsOptions.schemaValidation` is set to `ignore`. * unless `DiagnosticsOptions.schemaValidation` is set to `ignore`.
*/ */
readonly validate?: boolean; readonly validate?: boolean;