lint: No longer ignore access to the deprecated global 'unpack'
authorKim Alvefur <zash@zash.se>
Sat, 08 Dec 2018 17:07:28 +0100
changeset 9694 75ed3403065d
parent 9693 9e2ee40b4a0a
child 9695 e11e076f0eb8
lint: No longer ignore access to the deprecated global 'unpack' _G.unpack is deprecated in Lua 5.2
.luacheckrc
--- a/.luacheckrc	Sat Dec 08 17:00:30 2018 +0100
+++ b/.luacheckrc	Sat Dec 08 17:07:28 2018 +0100
@@ -1,6 +1,6 @@
 cache = true
 codes = true
-ignore = { "411/err", "421/err", "411/ok", "421/ok", "211/_ENV", "431/log", "143/table", "113/unpack" }
+ignore = { "411/err", "421/err", "411/ok", "421/ok", "211/_ENV", "431/log", "143/table", }
 
 std = "lua53c"
 max_line_length = 150