diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-06-29 13:50:31 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-06-29 13:50:31 +0100 |
commit | e6b0ecf2435c94405c08f5ffd7d595f0b75cc8a4 (patch) | |
tree | c1f422558d0a31b8a93d9e4fd03ed3666d4f31f4 /.luacheckrc | |
parent | 988e97af844e0cfdf16fde8412fab52a1953d478 (diff) | |
download | prosody-e6b0ecf2435c94405c08f5ffd7d595f0b75cc8a4.tar.gz prosody-e6b0ecf2435c94405c08f5ffd7d595f0b75cc8a4.zip |
luacheckrc: Allow plugins to implement functions under module.* (module.load, etc.)
Diffstat (limited to '.luacheckrc')
-rw-r--r-- | .luacheckrc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.luacheckrc b/.luacheckrc index 3f147806..7ebc7af4 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -6,3 +6,7 @@ module = true unused_secondaries = false codes = true ignore = { "411/err", "421/err", "411/ok", "421/ok" } + +files["plugins/"] = { + ignore = { "122/module" }; +} |