Think I just need to add error code 631 to my ignore clause now. (Line is too long > 120)... It is not 1980 anymore I choose to live dangerously
Skyweave CI Rituals / Rite of Static Scrutiny (Luacheck) (push) Successful in 5s

This commit is contained in:
wes
2025-06-12 08:03:26 -04:00
parent 4ade029461
commit 03515be254
+3 -1
View File
@@ -28,9 +28,11 @@ exclude_files = {
-- 211: Unused variable -- 211: Unused variable
-- 212: Unused argument -- 212: Unused argument
-- 213: Unused argument 'self' -- 213: Unused argument 'self'
-- 631: skyweave/utils.lua:187:121: line is too long (135 > 120)
ignore = { ignore = {
"111", "111",
"211", "211",
"212", "212",
"213" "213",
"631"
} }