Configuring luacheck to be a little more reasonable part 3
Skyweave CI Rituals / Rite of Static Scrutiny (Luacheck) (push) Failing after 6s

This commit is contained in:
wes
2025-06-12 07:58:24 -04:00
parent dcbd96ee75
commit 4ade029461
+8 -11
View File
@@ -24,16 +24,13 @@ exclude_files = {
"src/"
}
-- Ignore specific, non-critical warnings by their numeric code.
-- W111: Line is too long
-- W211: Unused variable
-- W212: Unused argument
-- W213: Unused argument 'self'
-- The pattern '*' applies the rules to every file luacheck analyzes.
-- 111: Line is too long
-- 211: Unused variable
-- 212: Unused argument
-- 213: Unused argument 'self'
ignore = {
['*'] = {
"W111", -- line is too long
"W211", -- unused variable
"W212", -- unused argument
"W213" -- unused argument 'self'
}
"111",
"211",
"212",
"213"
}