diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-22 17:34:42 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-22 17:34:42 +0100 |
commit | 5539087eefcd40d1b5b302140592c53d836d5a5f (patch) | |
tree | f55ee2fad6053f76941db40af2ef9e758966fdaa | |
parent | 6529c0fcb4a19a25f7f624f1cdb7c64fb287d251 (diff) | |
download | prosody-5539087eefcd40d1b5b302140592c53d836d5a5f.tar.gz prosody-5539087eefcd40d1b5b302140592c53d836d5a5f.zip |
util.debug: Silence luacheck warning about modifying 'debug' lib
-rw-r--r-- | util/debug.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/debug.lua b/util/debug.lua index a78524a9..00f476d0 100644 --- a/util/debug.lua +++ b/util/debug.lua @@ -1,6 +1,9 @@ -- Variables ending with these names will not -- have their values printed ('password' includes -- 'new_password', etc.) +-- +-- luacheck: ignore 122/debug + local censored_names = { password = true; passwd = true; |