summaryrefslogtreecommitdiff
path: root/.luarc.json
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-09-19 13:10:07 +0200
committerGitHub <[email protected]>2022-09-19 13:10:07 +0200
commit68fdbaa51d658899d4405b2660bfbe360e9dfed4 (patch)
tree0c3f4504ddb5a9ea6e46f5c3dba5ec62acce0a10 /.luarc.json
parent26d493419af23244fe6ca3daf3477c7b5d95c36e (diff)
fix(lsp): enforce lvim completion for lua-server (#3035)
Diffstat (limited to '.luarc.json')
-rw-r--r--.luarc.json9
1 files changed, 9 insertions, 0 deletions
diff --git a/.luarc.json b/.luarc.json
new file mode 100644
index 00000000..a95ef0a2
--- /dev/null
+++ b/.luarc.json
@@ -0,0 +1,9 @@
+{
+ "$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
+ "Lua.diagnostics.disable": [
+ "redundant-parameter",
+ "param-type-mismatch",
+ "missing-parameter"
+ ],
+ "diagnostics.libraryFiles": "Disable"
+}