Update readme.md

This commit is contained in:
Martin Aeschlimann 2016-06-27 09:52:49 +02:00
parent 76d2d0b8d1
commit da30aaede9
2 changed files with 37 additions and 3 deletions

4
src/monaco.d.ts vendored
View file

@ -6,11 +6,11 @@
declare module monaco.languages.json {
export interface DiagnosticsOptions {
/**
* If set, the validator will return syntax errors.
* If set, the validator will be enabled and perform syntax validation as well as schema based validation.
*/
validate?: boolean;
/**
* If set, comments are toleranted. If not set, a syntax error is emmited for comments.
* If set, comments are tolerated. If set to false, syntax errors will be emmited for comments.
*/
allowComments?: boolean;
/**