diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-04-22 03:18:35 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-22 03:18:35 +0800 |
commit | 7881d1a3d91b59d2dd8c28a72453e0e6c44a902f (patch) | |
tree | 6c2466f3676d813ac9db469815f4af9834d1711a /.luarc.json | |
parent | b85ff57a116fb252a0da35e525264e0940af88c7 (diff) | |
download | lua-language-server-7881d1a3d91b59d2dd8c28a72453e0e6c44a902f.zip |
new diagnostic `missing-parameter`
Diffstat (limited to '.luarc.json')
-rw-r--r-- | .luarc.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.luarc.json b/.luarc.json index 993be427..c0b893a3 100644 --- a/.luarc.json +++ b/.luarc.json @@ -7,7 +7,11 @@ "undefined-field": "Any", "await-in-sync": "Any", "not-yieldable": "Any", - "discard-returns": "Any" + "discard-returns": "Any", + "redundant-parameter": "Any", + "missing-parameter": "Any", + "redundant-value": "Any", + "deprecated": "Any" }, "ignoredFiles": "Opened", "libraryFiles": "Opened" |