# HG changeset patch # User Kim Alvefur # Date 1538844982 -7200 # Node ID 4e881be88727cbf455bfc761203f4af669ed9af0 # Parent f210ee7dffe90b2936a9b1c34f90020eca34d9bd .luacheckrc: Ignore unused secondaries in non-strict mode Previous commit was backwards diff -r f210ee7dffe9 -r 4e881be88727 .luacheckrc --- a/.luacheckrc Sat Oct 06 18:52:52 2018 +0200 +++ b/.luacheckrc Sat Oct 06 18:56:22 2018 +0200 @@ -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 @@ 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";