aboutsummaryrefslogtreecommitdiffstats
path: root/.luacheckrc
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-05-19 00:30:34 +0200
committerKim Alvefur <zash@zash.se>2018-05-19 00:30:34 +0200
commit3120037b03e314ef65929a9e9e12e0f0d603bbec (patch)
tree89f72624793f1f8968782095d7bffa708adc72fd /.luacheckrc
parentfb6acc56d385ef1275a40e98c031c85d5bd3a41a (diff)
downloadprosody-3120037b03e314ef65929a9e9e12e0f0d603bbec.tar.gz
prosody-3120037b03e314ef65929a9e9e12e0f0d603bbec.zip
.luacheckrc: Ignore attempts to get table.unpack
This is to allow this common pattern: local unpack = table.unpack or unpack;
Diffstat (limited to '.luacheckrc')
-rw-r--r--.luacheckrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.luacheckrc b/.luacheckrc
index b0630abb..6aff9301 100644
--- a/.luacheckrc
+++ b/.luacheckrc
@@ -1,7 +1,7 @@
cache = true
unused_secondaries = false
codes = true
-ignore = { "411/err", "421/err", "411/ok", "421/ok", "211/_ENV", "431/log" }
+ignore = { "411/err", "421/err", "411/ok", "421/ok", "211/_ENV", "431/log", "143/table", "113/unpack" }
max_line_length = 150