From 2b7c1dd8298466a6aad016334380632dcacca72a Mon Sep 17 00:00:00 2001 From: Lorenzo Cogotti Date: Tue, 21 Nov 2023 12:08:10 +0100 Subject: [PATCH] [.luarc] Add lua-language-server config file. --- .luarc.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .luarc.json diff --git a/.luarc.json b/.luarc.json new file mode 100644 index 0000000..8963afe --- /dev/null +++ b/.luarc.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json", + "workspace.checkThirdParty": false, + "runtime.version": "LuaJIT", + "diagnostics.globals": [ "love" ] +}