From 9f76dff977a6bcdc813b76909549d80d5a9e6a4f Mon Sep 17 00:00:00 2001 From: luaneko Date: Mon, 23 Jun 2025 09:27:40 +1000 Subject: [PATCH] Disable lowercase global lua warning --- .luarc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.luarc.json b/.luarc.json index 309c483..00c3492 100644 --- a/.luarc.json +++ b/.luarc.json @@ -1,5 +1,5 @@ { "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json", "runtime.version": "LuaJIT", - "diagnostics.disable": ["redefined-local"] + "diagnostics.disable": ["redefined-local", "lowercase-global"] }