summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-04-16 19:19:14 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-04-16 19:19:14 +0800
commit4ba6d16c4d3347b104208dad127d9ea6415e66c2 (patch)
tree648c78bf91c2da090a0274b37c57759547f92283 /script
parentb96fcdde819031b20c49e2070a3aaf070fb74088 (diff)
downloadlua-language-server-4ba6d16c4d3347b104208dad127d9ea6415e66c2.zip
disable hint by default
Diffstat (limited to 'script')
-rw-r--r--script/config/config.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/config/config.lua b/script/config/config.lua
index c18a7fdf..bde214b0 100644
--- a/script/config/config.lua
+++ b/script/config/config.lua
@@ -201,7 +201,7 @@ local Template = {
['Lua.semantic.variable'] = Type.Boolean >> true,
['Lua.semantic.annotation'] = Type.Boolean >> true,
['Lua.semantic.keyword'] = Type.Boolean >> false,
- ['Lua.hint.enable'] = Type.Boolean >> true,
+ ['Lua.hint.enable'] = Type.Boolean >> false,
['Lua.hint.paramType'] = Type.Boolean >> true,
['Lua.hint.setType'] = Type.Boolean >> false,
['Lua.hint.paramName'] = Type.String >> 'All',