aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/config.ts')
-rw-r--r--editors/code/src/config.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 7668c20b7..637aea27d 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -88,6 +88,7 @@ export class Config {
88 return { 88 return {
89 typeHints: this.cfg.get<boolean>("inlayHints.typeHints")!, 89 typeHints: this.cfg.get<boolean>("inlayHints.typeHints")!,
90 parameterHints: this.cfg.get<boolean>("inlayHints.parameterHints")!, 90 parameterHints: this.cfg.get<boolean>("inlayHints.parameterHints")!,
91 chainingHints: this.cfg.get<boolean>("inlayHints.chainingHints")!,
91 maxLength: this.cfg.get<null | number>("inlayHints.maxLength")!, 92 maxLength: this.cfg.get<null | number>("inlayHints.maxLength")!,
92 }; 93 };
93 } 94 }