diff --git a/.luacheckrc b/.luacheckrc index 2de98b9..44ad5ea 100755 --- a/.luacheckrc +++ b/.luacheckrc @@ -18,4 +18,19 @@ read_globals = { "type", "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" } \ No newline at end of file