lunarmodules / luacov

LuaCov is a simple coverage analyzer for Lua code.
http://lunarmodules.github.io/luacov/
MIT License
300 stars 68 forks source link

allow stuff like 'end end end' as an unaccounted line #100

Closed rbergmair closed 1 year ago

rbergmair commented 2 years ago

As a matter of subjective preference, I like to write lines like

end end end

where others might write

    end
  end
end

but this doesn't seem to jive with this rule.

Can we change it to allow multiple ends?

P.S. Thank you so much for your work on this! It's really valuable to me.