Checks for empty loop blocks.
You most likely forgot to write code in there or commented it out without commenting out the loop statement itself.
comments_count
(default: false
) - A bool that determines whether or not if statements with exclusively comments are empty.
-- Counts as an empty loop
for _ in {} do
end
for _ in {} do
-- If comments_count is true, this will not count as empty.
end