json server readme wording (#173304)

This commit is contained in:
Martin Aeschlimann 2023-02-03 15:39:45 +01:00 committed by GitHub
parent af33e96885
commit beea143b43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,9 +66,9 @@ The server supports the following settings:
- `enable`: Whether the server should validate. Defaults to `true` if not set. - `enable`: Whether the server should validate. Defaults to `true` if not set.
- `schemas`: Configures association of file names to schema URL or schemas and/or associations of schema URL to schema content. - `schemas`: Configures association of file names to schema URL or schemas and/or associations of schema URL to schema content.
- `fileMatch`: an array of file names or paths (separated by `/`). `*` can be used as a wildcard. Exclusion patterns can also be defined and start with '!'. A file matches when there is at least one matching pattern and the last matching pattern is not an exclusion pattern. - `fileMatch`: an array of file names or paths (separated by `/`). `*` can be used as a wildcard. Exclusion patterns can also be defined and start with '!'. A file matches when there is at least one matching pattern and the last matching pattern is not an exclusion pattern.
- `folderUri`: If provided, the association is only used if the document is located in the given folder (directly or in a subfolder)
- `url`: The URL of the schema, optional when also a schema is provided. - `url`: The URL of the schema, optional when also a schema is provided.
- `schema`: The schema content, optional - `schema`: The schema content, optional
- `folderUri`: If provided, the association is only used if the document is located in the given folder (directly or indirectly)
- `resultLimit`: The max number of color decorators and outline symbols to be computed (for performance reasons) - `resultLimit`: The max number of color decorators and outline symbols to be computed (for performance reasons)
- `jsonFoldingLimit`: The max number of folding ranges to be computed for json documents (for performance reasons) - `jsonFoldingLimit`: The max number of folding ranges to be computed for json documents (for performance reasons)
- `jsoncFoldingLimit`: The max number of folding ranges to be computed for jsonc documents (for performance reasons) - `jsoncFoldingLimit`: The max number of folding ranges to be computed for jsonc documents (for performance reasons)
@ -172,7 +172,7 @@ interface ISchemaAssociation {
*/ */
fileMatch: string[]; fileMatch: string[];
/** /**
* If provided, the association is only used if the validated document is located in the given folder (directly or indirectly) * If provided, the association is only used if the validated document is located in the given folder (directly or in a subfolder)
*/ */
folderUri?: string; folderUri?: string;
/* /*