mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +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());
|
||||
end;
|
||||
}, {
|
||||
__index = function (t, k)
|
||||
__index = function (t, k) --luacheck: ignore 212/t
|
||||
error("Unknown config option operation: '"..k.."'", 2);
|
||||
end;
|
||||
});
|
||||
|
@ -194,7 +194,15 @@ do
|
|||
end
|
||||
|
||||
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
|
||||
|
||||
return g_val;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue