Group local assign statements
local a = 7
local b = 10
Turns into:
local a, b = 7, 10
This rule needs to make sure that a following local statement does not use the previous one.
local a = 7
local b = 10
Turns into:
local a, b = 7, 10
This rule needs to make sure that a following local statement does not use the previous one.