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 | 2aae33a4f0f71c25e6d4aeb9a17c6eb092f7c4ca (patch) | |
tree | c1f422558d0a31b8a93d9e4fd03ed3666d4f31f4 | |
parent | ccfc7900288dc532248ef19aa5f391c2616e4264 (diff) | |
download | prosody-2aae33a4f0f71c25e6d4aeb9a17c6eb092f7c4ca.tar.gz prosody-2aae33a4f0f71c25e6d4aeb9a17c6eb092f7c4ca.zip |
luacheckrc: Allow plugins to implement functions under module.* (module.load, etc.)
-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" }; +} |