We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b458d2 commit 065d187Copy full SHA for 065d187
language-server/src/features/codeAction/extractSubschema.js
@@ -49,7 +49,7 @@ export class ExtractSubSchemaToDefs {
49
return [];
50
}
51
52
- const dialectUri = /** @type {string} */(node.root.dialectUri);
+ const dialectUri = /** @type {string} */ (node.root.dialectUri);
53
const definitionsKeyword = getKeywordName(dialectUri, "https://json-schema.org/keyword/definitions");
54
55
const definitionsNode = SchemaNode.step(definitionsKeyword, node.root);
language-server/src/services/configuration.js
@@ -35,6 +35,7 @@ export class Configuration {
35
36
/** @type DocumentSettings | undefined */
37
#settings;
38
+
39
/** @type Partial<DocumentSettings> */
40
#defaultSettings;
41
0 commit comments