From 1dc10964a2f6019f128d9c9ad2bdf9f557eb976a Mon Sep 17 00:00:00 2001 From: Brues <5278969+brues-code@users.noreply.github.com> Date: Wed, 2 Sep 2026 10:31:03 -0500 Subject: [PATCH] luarc: use nested config form so diagnostics settings apply --- .luarc.json | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/.luarc.json b/.luarc.json index a74d4ac8..ec3b2dd5 100644 --- a/.luarc.json +++ b/.luarc.json @@ -1,18 +1,22 @@ { - "runtime.version": "Lua 5.1", - "diagnostics.disable": ["deprecated"], - "diagnostics.globals": [ - "this", - "event", - "arg", - "arg1", - "arg2", - "arg3", - "arg4", - "arg5", - "arg6", - "arg7", - "arg8", - "arg9" - ] + "runtime": { + "version": "Lua 5.1" + }, + "diagnostics": { + "disable": ["deprecated"], + "globals": [ + "this", + "event", + "arg", + "arg1", + "arg2", + "arg3", + "arg4", + "arg5", + "arg6", + "arg7", + "arg8", + "arg9" + ] + } }