diff options
author | sumneko <sumneko@hotmail.com> | 2022-02-17 13:54:17 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2022-02-17 13:54:17 +0800 |
commit | ba55a9f6dbf57b5b9ec38f1978caa7178f44f13d (patch) | |
tree | ff48e3916e9295ee8a7200bd1213f73bd4aad9d4 /script/config/config.lua | |
parent | 12d6a9eb75f31b64cbc89eb3265805bc8dad01f0 (diff) | |
download | lua-language-server-ba55a9f6dbf57b5b9ec38f1978caa7178f44f13d.zip |
`FIX` telemetry is not disabled by default
Diffstat (limited to 'script/config/config.lua')
-rw-r--r-- | script/config/config.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/config/config.lua b/script/config/config.lua index a53b77b5..88881731 100644 --- a/script/config/config.lua +++ b/script/config/config.lua @@ -212,7 +212,7 @@ local Template = { ['Lua.IntelliSense.traceReturn'] = Type.Boolean >> false, ['Lua.IntelliSense.traceBeSetted'] = Type.Boolean >> false, ['Lua.IntelliSense.traceFieldInject'] = Type.Boolean >> false, - ['Lua.telemetry.enable'] = Type.Or(Type.Boolean >> false, Type.Nil), + ['Lua.telemetry.enable'] = Type.Or(Type.Boolean >> false, Type.Nil) >> nil, ['files.associations'] = Type.Hash(Type.String, Type.String), ['files.exclude'] = Type.Hash(Type.String, Type.Boolean), ['editor.semanticHighlighting.enabled'] = Type.Or(Type.Boolean, Type.String), |