diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-04 01:30:00 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-04 01:30:00 +0200 |
commit | aa0ceacdb380321f54f3b1e7a7ff79fb495f7611 (patch) | |
tree | 8bb49b76a2e73fb89a41cd72f44c145730945e6d | |
parent | 6132b1f72e57a5250bae29cca2f5831185a2c2c9 (diff) | |
download | prosody-aa0ceacdb380321f54f3b1e7a7ff79fb495f7611.tar.gz prosody-aa0ceacdb380321f54f3b1e7a7ff79fb495f7611.zip |
mod_storage_none: Ignore unused arguments [luacheck]
-rw-r--r-- | plugins/mod_storage_none.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_storage_none.lua b/plugins/mod_storage_none.lua index fa925b76..f1692cb8 100644 --- a/plugins/mod_storage_none.lua +++ b/plugins/mod_storage_none.lua @@ -1,3 +1,5 @@ +-- luacheck: ignore 212 + local driver = {}; local driver_mt = { __index = driver }; |