Skip to content
This repository was archived by the owner on Sep 30, 2020. It is now read-only.

Commit 3b11a9a

Browse files
committed
Even more lua warning fixes.
1 parent cc1338f commit 3b11a9a

2 files changed

Lines changed: 117 additions & 226 deletions

File tree

.luacheckrc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ ignore = {
99
"11./BINDING_.*", -- Setting an undefined (Keybinding header) global variable
1010
"113/LE_.*", -- Accessing an undefined (Lua ENUM type) global variable
1111
"113/NUM_LE_.*", -- Accessing an undefined (Lua ENUM type) global variable
12-
"211", -- Unused local variable
13-
"211/L", -- Unused local variable "L"
14-
"211/CL", -- Unused local variable "CL"
12+
-- "211", -- Unused local variable
13+
-- "211/L", -- Unused local variable "L"
14+
-- "211/CL", -- Unused local variable "CL"
1515
-- "212", -- Unused argument
16-
"43.", -- Shadowing an upvalue, an upvalue argument, an upvalue loop variable.
17-
"542", -- An empty if branch
16+
-- "43.", -- Shadowing an upvalue, an upvalue argument, an upvalue loop variable.
17+
-- "542", -- An empty if branch
1818
}
1919
globals = {
2020
"_G",

0 commit comments

Comments
 (0)