aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/config.ts
diff options
context:
space:
mode:
authorMatt Hooper <[email protected]>2020-03-23 22:32:50 +0000
committerMatt Hooper <[email protected]>2020-03-24 22:22:41 +0000
commit6f239a581a0acf8d1c3f26da68146c5c1ea7d4f2 (patch)
treee055af89b00259f06192265ad1bc95662ef90041 /editors/code/src/config.ts
parenta197abbc7aed53c42cac7e9e86787e44a5026291 (diff)
Extension types and rendering
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 }