From 33d7b260c040429d89fdf452d68613832e513b4b Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Sun, 19 Dec 2021 22:51:26 +0100 Subject: [PATCH] Disable undefined-global for lua lsp --- .luarc.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .luarc.json diff --git a/.luarc.json b/.luarc.json new file mode 100644 index 0000000..8f4a02f --- /dev/null +++ b/.luarc.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json", + "Lua.diagnostics.disable": ["undefined-global"] +} +