selene-lib 0.31.0

A library for linting Lua code. You probably want selene instead.
Documentation
local foo = {
	a = true,
	b = false,
	a = false,
}

local bar = {
	a = true,
	b = false,
	a = false,
	c = "hello",
	a = false,
}

local baz = {
	a = true,
	b = false,
	["a"] = true,
}

-- Ignore complex expressions
local barbaz = {
	[call()] = true,
	[call()] = false,
}