Changeset

8821:c1014eac2a1a

.luacheckrc: Only ignore warnings for excluded files, not syntax errors
author Kim Alvefur <zash@zash.se>
date Wed, 23 May 2018 00:55:33 +0200
parents 8820:1348a931528a
children 8822:4afa77e0d2b0
files .luacheckrc
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.luacheckrc	Tue May 22 22:25:59 2018 +0200
+++ b/.luacheckrc	Wed May 23 00:55:33 2018 +0200
@@ -123,7 +123,7 @@
 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!
-	exclude_files = {
+	local exclude_files = {
 	"doc/net.server.lua";
 
 	"fallbacks/bit.lua";
@@ -181,6 +181,9 @@
 
 	"util/sasl/digest-md5.lua";
 	}
+	for _, file in ipairs(exclude_files) do
+		files[file] = { only = {} }
+	end
 else
 	max_cyclomatic_complexity = 50
 	max_line_length = 120