possible luacheck fixes

This commit is contained in:
Mikayla Fischler
2023-05-05 14:07:15 -04:00
parent 30ba8bdccf
commit 5a139c2dd6
2 changed files with 4 additions and 4 deletions

View File

@@ -113,7 +113,7 @@ end
---@return table lines
function util.strwrap(str, limit) return cc_strings.wrap(str, limit) end
-- luacheck no unused args
-- luacheck: no unused args, no unused
-- concatenation with built-in to string
---@nodiscard
@@ -138,7 +138,7 @@ function util.sprintf(format, ...)
return string.format(format, table.unpack(arg))
end
-- luacheck unused args
-- luacheck: unused args, unused
-- format a number string with commas as the thousands separator<br>
-- subtracts from spaces at the start if present for each comma used