parenthese_conditions
What it does
Checks for conditions in the form of (expression)
.
Why this is bad
Lua does not require these, and they are not idiomatic.
Example
if (x) then
repeat until (x)
while (x) do
...should be written as...
if x then
repeat until x
while x do