From 8408405cb383b79f3a168149a6ef9fadaffdd67c Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Wed, 15 Mar 2023 18:40:50 +0100 Subject: [PATCH] build(deps): bump luacheck to 1.1.0-1 also ignore two new warnings showing false positives --- .luacheckrc | 2 ++ cmake.deps/cmake/BuildLuarocks.cmake | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.luacheckrc b/.luacheckrc index d1aca1cfd6..e804d1c822 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -19,8 +19,10 @@ cache = true ignore = { "631", -- max_line_length "212/_.*", -- unused argument, for vars with "_" prefix + "214", -- used variable with unused hint ("_" prefix) "121", -- setting read-only global variable 'vim' "122", -- setting read-only field of global variable 'vim' + "581", -- negation of a relational operator- operator can be flipped (not for tables) } -- Global objects defined by the C code diff --git a/cmake.deps/cmake/BuildLuarocks.cmake b/cmake.deps/cmake/BuildLuarocks.cmake index 40b3343a11..cdb7eb97f9 100644 --- a/cmake.deps/cmake/BuildLuarocks.cmake +++ b/cmake.deps/cmake/BuildLuarocks.cmake @@ -140,7 +140,7 @@ if(USE_BUNDLED_BUSTED) # luacheck add_custom_command(OUTPUT ${LUACHECK_EXE} - COMMAND ${LUAROCKS_BINARY} build luacheck 0.23.0-1 ${LUAROCKS_BUILDARGS} + COMMAND ${LUAROCKS_BINARY} build luacheck 1.1.0-1 ${LUAROCKS_BUILDARGS} DEPENDS busted) add_custom_target(luacheck ALL DEPENDS ${LUACHECK_EXE})