diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-04-03 19:56:11 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-04-03 19:56:11 +0100 |
commit | 07c3ce955c785449747a9248a88c161d7bbf9edc (patch) | |
tree | 53ab63b79eccff0821b334649083a9302ac53d07 | |
parent | 8d281ac12189135237c72b066c143547146f5e8e (diff) | |
download | prosody-07c3ce955c785449747a9248a88c161d7bbf9edc.tar.gz prosody-07c3ce955c785449747a9248a88c161d7bbf9edc.zip |
.luacheckrc: Ignore config files in spec/tls
-rw-r--r-- | .luacheckrc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.luacheckrc b/.luacheckrc index 09225d01..1a392dab 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -131,6 +131,11 @@ files["spec/"] = { std = "+busted"; globals = { "randomize" }; } +files["spec/tls"] = { + -- luacheck complains about the config files here, + -- but we don't really care about them + only = {}; +} files["prosody.cfg.lua"] = { ignore = { "131" }; globals = { |