selene-lib 0.3.0

A library for linting Lua code. You probably want selene instead.
Documentation
if true then
end

if true then
    -- bla bla bla
    -- lot of documentation
    -- oh no i forgot code
end

if true then
    print("code")
end

if true then
    print("code here")
else
    -- oh no
end

if true then
    -- oh no
else
    print("code here")
end

if true then
elseif false then
end

if 1 then
    print("foo")
elseif 2 then
    -- uh oh
else
    print("bar")
end

if 1 then
    print("foo")
elseif 2 then
    print("bar")
else
    print("baz")
end

if true then
elseif true then
else
end