diff options
Diffstat (limited to 'editors/code/src')
-rw-r--r-- | editors/code/src/config.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index 2668c9640..c3b3ecabf 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts | |||
@@ -8,7 +8,7 @@ const RA_LSP_DEBUG = process.env.__RA_LSP_SERVER_DEBUG; | |||
8 | export interface InlayHintOptions { | 8 | export interface InlayHintOptions { |
9 | typeHints: boolean; | 9 | typeHints: boolean; |
10 | parameterHints: boolean; | 10 | parameterHints: boolean; |
11 | maxLength: number; | 11 | maxLength: number | null; |
12 | } | 12 | } |
13 | 13 | ||
14 | export interface CargoWatchOptions { | 14 | export interface CargoWatchOptions { |
@@ -160,7 +160,7 @@ export class Config { | |||
160 | return { | 160 | return { |
161 | typeHints: this.cfg.get("inlayHints.typeHints") as boolean, | 161 | typeHints: this.cfg.get("inlayHints.typeHints") as boolean, |
162 | parameterHints: this.cfg.get("inlayHints.parameterHints") as boolean, | 162 | parameterHints: this.cfg.get("inlayHints.parameterHints") as boolean, |
163 | maxLength: this.cfg.get("inlayHints.maxLength") as number, | 163 | maxLength: this.cfg.get("inlayHints.maxLength") as null | number, |
164 | }; | 164 | }; |
165 | } | 165 | } |
166 | get excludeGlobs() { return this.cfg.get("excludeGlobs") as string[]; } | 166 | get excludeGlobs() { return this.cfg.get("excludeGlobs") as string[]; } |