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

This commit is contained in:
wes
2025-06-12 07:49:48 -04:00
parent d36483901f
commit 65ef36b6b5
+15
View File
@@ -19,3 +19,18 @@ read_globals = {
"next",
"rawget"
}
exclude_files = {
"lib/",
"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'
ignore = {
"W111",
"W211",
"W212",
"W213"
}