An opinionated code formatter for Lua 5.1 and Luau, built using full-moon. StyLua is inspired by the likes of prettier, it parses your Lua codebase, and prints it back out from scratch, enforcing a consistent code style.
There are multiple ways to install StyLua:
Pre-built binaries are available on the GitHub Releases Page. Please note, currently by default, StyLua is built with Luau features enabled. If you would just like to format Lua 5.1 code, please see installing from crates.io
With Foreman
StyLua can be installed using foreman. Add the following to your foreman.toml
file:
stylua = { source = "JohnnyMorganz/stylua", version = "0.1.0-alpha.3" }
You can use the VSCode Extension, which will automatically download StyLua for you.
Set StyLua as your formatter when prompted, or add the following configuration to your settings.json
file:
"[lua]": {
"editor.defaultFormatter": "JohnnyMorganz.stylua"
},
and StyLua will then be used to format your code. It is recommended to also enable editor.formatOnSave
.
If you have Rust installed, you can install StyLua using cargo
cargo install stylua
This will compile StyLua (for Lua 5.1) and install it on your local machine.
If you would like Luau features, pass the --features luau
argument.
cargo install stylua --features luau
Once installed, using StyLua is quick and simple, just pass the files to format to the CLI.
stylua src/ foo.lua bar.lua
This command will format the foo.lua
and bar.lua
file, and search down the src
directory to format any files within it.
StyLua can also read from stdin, by using -
as the file name.
When searching through a directory, a glob pattern can be used to specify which specific types of files to format:
stylua --glob **/*.lua src
Multiple glob patterns can be used to match specific files, and not others. For example:
stylua -g *.lua -g !*.spec.lua .
will format all Lua files, but ignore any .spec.lua
test files.
The glob defaults to **/*.lua
.
You can also create a .styluaignore
file, with a similar format to a .gitignore
file. Any files matched will be ignored by StyLua.
For example, for a .styluaignore
file with the following contents:
vendor/
running stylua .
will ignore the vendor/
directory.
If you want to check that files have been formatted, but not overwrite them, you can pass the --check
argument to StyLua.
StyLua will search through files as normal, but instead of writing the formatted code back to the file, StyLua will output a diff to stdout.
If there are files which haven't been fully formatted, StyLua will exit with status code 1.
StyLua is opinionated, so there as little configuration options as possible.
The CLI will search for a stylua.toml
file in the current working directory to read the configuration.
Alternatively, you can pass your own path using the --config-path
argument.
StyLua only offers the following options:
The type of line endings to use, supports either Unix
(LF) or Windows
(CRLF) options.
Defaults to Unix
.
line_endings = "Unix"
The type of indents to use, supports either Tabs
or Spaces
.
Defaults to Tabs
.
indent_type = "Tabs"
The width of spaces a single indent level should be. This option is ignored if the indent_type
is set to Tabs
.
Defaults to 4
.
indent_width = 2