You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add hideEndTagSuggestions option to LSPConfig.html
Update options of LSPConfig.json
exportinterfaceJSONLanguageConfig{/** By default, the validator will return syntax and semantic errors. Set to false to disable the validator. */validate?: boolean;/** Defines whether comments are allowed or not. Default is disallowed. */allowComments?: boolean;/** A list of known schemas and/or associations of schemas to file names. */schemas?: JSONSchemaSource[];/** The severity of reported comments. Default is "error". */comments?: SeverityLevel;/** The severity of reported trailing commas. Default is "error". */trailingCommas?: SeverityLevel;/** The severity of problems from schema validation. Default is "warning". */schemaValidation?: SeverityLevel;/** The severity of problems that occurred when resolving and loading schemas. Default is "warning". */schemaRequest?: SeverityLevel;}