diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-06 18:56:22 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-06 18:56:22 +0200 |
commit | 18f98f701791369a09617ef5ce7652190c7952b2 (patch) | |
tree | e9d627534cc04da9dfdaf9a00e1f93ff4b229752 /.luacheckrc | |
parent | e33c9e7a4358e13d07c3dd9c9d6b49eb92a712e7 (diff) | |
download | prosody-18f98f701791369a09617ef5ce7652190c7952b2.tar.gz prosody-18f98f701791369a09617ef5ce7652190c7952b2.zip |
.luacheckrc: Ignore unused secondaries in non-strict mode
Previous commit was backwards
Diffstat (limited to '.luacheckrc')
-rw-r--r-- | .luacheckrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.luacheckrc b/.luacheckrc index 00006d33..862f7c76 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -1,5 +1,4 @@ cache = true -unused_secondaries = false codes = true ignore = { "411/err", "421/err", "411/ok", "421/ok", "211/_ENV", "431/log", "143/table", "113/unpack" } @@ -124,7 +123,8 @@ files["prosody.cfg.lua"] = { if os.getenv("PROSODY_STRICT_LINT") ~= "1" then -- These files have not yet been brought up to standard -- Do not add more files here, but do help us fix these! - unused_secondaries = true + unused_secondaries = false + local exclude_files = { "doc/net.server.lua"; |