From 03515be254b7a27f87757f76546427a796ac201d Mon Sep 17 00:00:00 2001 From: Wesley Ray Date: Thu, 12 Jun 2025 08:03:26 -0400 Subject: [PATCH] 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 --- .luacheckrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.luacheckrc b/.luacheckrc index 6110761..97d783a 100755 --- a/.luacheckrc +++ b/.luacheckrc @@ -28,9 +28,11 @@ exclude_files = { -- 211: Unused variable -- 212: Unused argument -- 213: Unused argument 'self' +-- 631: skyweave/utils.lua:187:121: line is too long (135 > 120) ignore = { "111", "211", "212", - "213" + "213", + "631" } \ No newline at end of file