mpeterv / luacheck

A tool for linting and static analysis of Lua code.
MIT License
1.92k stars 322 forks source link

does luacheck can check the wrong name of a function ? #105

Closed zhuoyikang closed 7 years ago

zhuoyikang commented 7 years ago

local a = {}

function a.good() end

function a:nice() end

-- detect a:nce() -- name wrong a:god() -- name wrong

is that possible?

mpeterv commented 7 years ago

Not yet (duplicate of #86).