Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/config.ts')
-rw-r--r--editors/code/src/config.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 5d3ef40459..183521c10c 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -97,19 +97,6 @@ export class Config {
get serverExtraEnv() { return this.get<Env | null>("server.extraEnv") ?? {}; }
get traceExtension() { return this.get<boolean>("trace.extension"); }
- get inlayHints() {
- return {
- enable: this.get<boolean>("inlayHints.enable"),
- typeHints: this.get<boolean>("inlayHints.typeHints"),
- parameterHints: this.get<boolean>("inlayHints.parameterHints"),
- chainingHints: this.get<boolean>("inlayHints.chainingHints"),
- closureReturnTypeHints: this.get<boolean>("inlayHints.closureReturnTypeHints"),
- hideNamedConstructorHints: this.get<boolean>("inlayHints.hideNamedConstructorHints"),
- smallerHints: this.get<boolean>("inlayHints.smallerHints"),
- maxLength: this.get<null | number>("inlayHints.maxLength"),
- };
- }
-
get cargoRunner() {
return this.get<string | undefined>("cargoRunner");
}