darklua
darklua copied to clipboard
Add rule to remove floor division operator
Remove usage of // in binary expressions and in //= assignments.
Example:
return 10 // divider
Converts to
return math.floor(10 / divider)