From 9219831aa2a5e0f8ebc2105ef85b391e0b5543d2 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sat, 11 Jun 2022 13:41:33 +1000 Subject: [PATCH] fix: .luarc.json globals/disables --- .luarc.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.luarc.json b/.luarc.json index 5b4d6797..2314c4a6 100644 --- a/.luarc.json +++ b/.luarc.json @@ -2,14 +2,14 @@ "$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json", "runtime.version" : "Lua 5.1", "diagnostics": { - "globals": { - "vim": true - }, - "disable": { - "lowercase-global": true, - "missing-parameter": true, - "trailing-space": true - } + "globals": [ + "vim" + ], + "disable": [ + "lowercase-global", + "missing-parameter", + "trailing-space" + ] } }