Does Lua Glider have any code beautification functionality.
I am not sure “code beautification” is the right term.
Basically, it’s a thing for people with OCD that makes the source code a standard layout.
It does not change the code syntactically, just the layout.
I have used something before for Perl. It applies a style to the code.
eg. parameter lists (a,b, c, d) it will make into this ( a, b, c, d )
It can also check things like do variable names start with lowercase letter, and flag it if not.
And check indentation is consistent.
etc.