mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
configmanager: Fix linter issues
This commit is contained in:
parent
7a288248f0
commit
9bd1726821
1 changed files with 10 additions and 2 deletions
|
@ -146,7 +146,7 @@ do
|
||||||
return it.values(self:value());
|
return it.values(self:value());
|
||||||
end;
|
end;
|
||||||
}, {
|
}, {
|
||||||
__index = function (t, k)
|
__index = function (t, k) --luacheck: ignore 212/t
|
||||||
error("Unknown config option operation: '"..k.."'", 2);
|
error("Unknown config option operation: '"..k.."'", 2);
|
||||||
end;
|
end;
|
||||||
});
|
});
|
||||||
|
@ -194,7 +194,15 @@ do
|
||||||
end
|
end
|
||||||
|
|
||||||
if g_val ~= nil then
|
if g_val ~= nil then
|
||||||
t_insert(warnings, ("%s:%d: direct usage of the Lua API is deprecated - replace `%s` with `Lua.%s`"):format(config_file, get_line_number(config_file), k, k));
|
t_insert(
|
||||||
|
warnings,
|
||||||
|
("%s:%d: direct usage of the Lua API is deprecated - replace `%s` with `Lua.%s`"):format(
|
||||||
|
config_file,
|
||||||
|
get_line_number(config_file),
|
||||||
|
k,
|
||||||
|
k
|
||||||
|
)
|
||||||
|
);
|
||||||
end
|
end
|
||||||
|
|
||||||
return g_val;
|
return g_val;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue