aboutsummaryrefslogtreecommitdiffstats
path: root/.luacheckrc
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-12-08 17:07:28 +0100
committerKim Alvefur <zash@zash.se>2018-12-08 17:07:28 +0100
commit2d56ac0394838f6fe199566bd5a8f2be15c27a8e (patch)
tree1737bac373dedcd6fc7f6811421762f014d1acd4 /.luacheckrc
parentfa9d2ec96308906179bf39bff1442662b1beff16 (diff)
downloadprosody-2d56ac0394838f6fe199566bd5a8f2be15c27a8e.tar.gz
prosody-2d56ac0394838f6fe199566bd5a8f2be15c27a8e.zip
lint: No longer ignore access to the deprecated global 'unpack'
_G.unpack is deprecated in Lua 5.2
Diffstat (limited to '.luacheckrc')
-rw-r--r--.luacheckrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.luacheckrc b/.luacheckrc
index 3192768c..96882c73 100644
--- a/.luacheckrc
+++ b/.luacheckrc
@@ -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