diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-06-27 19:07:46 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-06-27 19:07:46 +0800 |
commit | edc9797838506728ba65a50b94781ac99e3bdd86 (patch) | |
tree | 27aac9c1216cc2075621ad36da57183111cd6c22 /script/proto | |
parent | cae348536cef3f2f5f96c5821c7e45539aeff1cf (diff) | |
download | lua-language-server-edc9797838506728ba65a50b94781ac99e3bdd86.zip |
diagnostic `missing-return-value`
Diffstat (limited to 'script/proto')
-rw-r--r-- | script/proto/diagnostic.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/script/proto/diagnostic.lua b/script/proto/diagnostic.lua index 59f33693..5972150c 100644 --- a/script/proto/diagnostic.lua +++ b/script/proto/diagnostic.lua @@ -58,6 +58,7 @@ m.register { 'unbalanced-assignments', 'redundant-parameter', 'missing-parameter', + 'missing-return-value', } { group = 'unbalanced', severity = 'Warning', |