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 | 0817bc4e8fe19c844b08369dab03f84b1d0e5f0a (patch) | |
tree | 8bb49b76a2e73fb89a41cd72f44c145730945e6d /plugins/mod_storage_none.lua | |
parent | a5aa767a535c15a1a9877453271a8a98cee10094 (diff) | |
download | prosody-0817bc4e8fe19c844b08369dab03f84b1d0e5f0a.tar.gz prosody-0817bc4e8fe19c844b08369dab03f84b1d0e5f0a.zip |
mod_storage_none: Ignore unused arguments [luacheck]
Diffstat (limited to 'plugins/mod_storage_none.lua')
-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 }; |