We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is example of code: a.lua
module("aModule" ,package.seeall) AMethod = function() print("AMethod") end
b.lua
aModule.AMethod()
.luacheckrc
std = "lua51" codes = true allow_defined_top = true
luacheck show accessing undefined variable warning when checking b.lua
accessing undefined variable
In a.lua, aModule already be defined as a global variable. Is the module function not supported in luacheck?
a.lua
aModule
module
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is example of code:
a.lua
b.lua
.luacheckrc
luacheck show
accessing undefined variable
warning when checkingb.lua
In
a.lua
,aModule
already be defined as a global variable.Is the
module
function not supported in luacheck?The text was updated successfully, but these errors were encountered: