refactor(lua): reformat with stylua 0.14.0 (#19264)

* reformat Lua runtime to make lint CI pass
* reduce max line length to 100
This commit is contained in:
Christian Clason
2022-07-07 18:27:18 +02:00
committed by GitHub
parent 34d41baf8a
commit aa4f9c5341
26 changed files with 563 additions and 182 deletions

View File

@@ -26,7 +26,9 @@ function M.check()
report_error(string.format('Impossible to load parser for %s: %s', parsername, ret))
elseif ret then
local lang = ts.language.inspect_language(parsername)
report_ok(string.format('Loaded parser for %s: ABI version %d', parsername, lang._abi_version))
report_ok(
string.format('Loaded parser for %s: ABI version %d', parsername, lang._abi_version)
)
else
report_error(string.format('Unable to load parser for %s', parsername))
end