diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-07-07 17:54:27 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-07-07 17:54:27 +0800 |
commit | dd127fd3161c49a1604e5911c3d2e8dd5d2ac67c (patch) | |
tree | 31017429345ba035a3df64bb934b1f91e888240c /doc/pt-br/config.md | |
parent | 60332a2cceb05a0160d76d6182c756afa0571fae (diff) | |
download | lua-language-server-dd127fd3161c49a1604e5911c3d2e8dd5d2ac67c.zip |
resolve #619 `diagnostics.unusedLocalExclude`
Diffstat (limited to 'doc/pt-br/config.md')
-rw-r--r-- | doc/pt-br/config.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/pt-br/config.md b/doc/pt-br/config.md index 479a6add..f888efea 100644 --- a/doc/pt-br/config.md +++ b/doc/pt-br/config.md @@ -891,6 +891,22 @@ object<string, string> } ``` +# diagnostics.unusedLocalExclude + +Do not diagnose `unused-local` when the variable name matches the following pattern. + +## type + +```ts +Array<string> +``` + +## default + +```jsonc +[] +``` + # diagnostics.workspaceDelay Latency (milliseconds) for workspace diagnostics. When you start the workspace, or edit any file, the entire workspace will be re-diagnosed in the background. Set to negative to disable workspace diagnostics. |