Disable type mismatch unless opened

This commit is contained in:
Cooldude2606
2025-08-06 17:05:44 +01:00
parent c5b9138e4e
commit 69909e3202

View File

@@ -17,6 +17,7 @@
"inferParamType": true "inferParamType": true
}, },
"$comment-name-style-check": "Disabled below until config issue fixed: https://github.com/LuaLS/lua-language-server/issues/2643", "$comment-name-style-check": "Disabled below until config issue fixed: https://github.com/LuaLS/lua-language-server/issues/2643",
"$comment-type-mismatch": "Disabled unless opened due to performance concerns, time reduced to 10s from 400s",
"diagnostics": { "diagnostics": {
"unusedLocalExclude": [ "_*", "i", "j", "k", "v" ], "unusedLocalExclude": [ "_*", "i", "j", "k", "v" ],
"groupFileStatus": { "groupFileStatus": {
@@ -37,7 +38,10 @@
"neededFileStatus": { "neededFileStatus": {
"no-unknown": "None!", "no-unknown": "None!",
"spell-check": "None!", "spell-check": "None!",
"name-style-check": "None!" "name-style-check": "None!",
"assign-type-mismatch": "Opened!",
"return-type-mismatch": "Opened!",
"param-type-mismatch": "Opened!"
} }
}, },
"nameStyle.config": { "nameStyle.config": {