From 3bae152cc9618404896cbe5d1d0e671f4febb2f2 Mon Sep 17 00:00:00 2001 From: Vitaly Turovsky Date: Thu, 21 Jul 2022 22:46:28 +0300 Subject: [PATCH] docs: add description for replaceSuggestions --- src/configurationType.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/configurationType.ts b/src/configurationType.ts index 2f2c78ec..d9721ded 100644 --- a/src/configurationType.ts +++ b/src/configurationType.ts @@ -131,6 +131,8 @@ export type Configuration = { /** Diagnostics (if not handled by eslint) & completions */ // 'dotImportsMap.enable': boolean, /** + * One of the most powerful setting here. It lets you remove/edit any suggestion that comes from TS. + * **Please** try to always specify kind (e.g. variable) of the suggestion to ensure you don't remove word-suggestion or postfix snippet * @default [] */ replaceSuggestions: ReplaceRule[]