У питона есть свой PEP8. А в lua вообще существует ли общепринятого, лаконичного написания кода? Просто вот смотрю такой код у awesome rc.lua, очень странно:
if awesome.startup_errors then
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, there were errors during startup!",
text = awesome.startup_errors })
end
А нельзя ли было написать более лаконично?
if awesome.startup_errors then
naughty.notify(
{
preset = naughty.config.presets.critical,
title = "Oops, there were errors during startup!",
text = awesome.startup_errors
}
)
end
Зачем эти вермишели?:)