diff options
author | Bruno Carvalho <b.camara@live.com> | 2024-04-23 13:28:07 -0300 |
---|---|---|
committer | Bruno Carvalho <b.camara@live.com> | 2024-04-23 13:28:07 -0300 |
commit | a8c0929405a02e54749d3d59ce4dad7bc3e0a863 (patch) | |
tree | 36e2be9dd50eb5a958c8803193b2be133a74c3d9 /doc/en-us | |
parent | 6b5e19597d88a219aac73cbccd6f88a4213e07aa (diff) | |
download | lua-language-server-a8c0929405a02e54749d3d59ce4dad7bc3e0a863.zip |
Add globalsRegex to diagnostics
Improve checkIsUndefinedGlobal to avoid unecessary checks and tables
Diffstat (limited to 'doc/en-us')
-rw-r--r-- | doc/en-us/config.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/en-us/config.md b/doc/en-us/config.md index f57d4d64..8dd8c059 100644 --- a/doc/en-us/config.md +++ b/doc/en-us/config.md @@ -406,6 +406,22 @@ Array<string> [] ``` +# diagnostics.globalsRegex + +Find defined global variables using regex. + +## type + +```ts +Array<string> +``` + +## default + +```jsonc +[] +``` + # diagnostics.groupFileStatus Modify the diagnostic needed file status in a group. |