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
commite22dada0b27f0793bd88b4882fc73fcdc7936b6a (patch)
tree1737bac373dedcd6fc7f6811421762f014d1acd4 /.luacheckrc
parentd67408b4d87c4556371c15082097ac00f4edcb6c (diff)
downloadprosody-e22dada0b27f0793bd88b4882fc73fcdc7936b6a.tar.gz
prosody-e22dada0b27f0793bd88b4882fc73fcdc7936b6a.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