🚧 Not Actively Maintained 🚧
Please note that this plugin is currently unfinished. We don't recommend it for production use.
Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.
This plugin adds support for the Lua language to Prettier.
functiondeepcopy(orig)
localorig_type=type(orig)
localcopyiforig_type=='table' then; copy= {}
fororig_key, orig_valueinnext, orig, nildocopy[deepcopy(orig_key)] =deepcopy(orig_value)
endsetmetatable(
copy,
deepcopy(
getmetatable(orig)))
elsecopy=origendreturncopyendfunctiondeepcopy(orig)
localorig_type=type(orig)
localcopyiforig_type=="table" thencopy= {}
fororig_key, orig_valueinnext, orig, nildocopy[deepcopy(orig_key)] =deepcopy(orig_value)
endsetmetatable(copy, deepcopy(getmetatable(orig)))
elsecopy=origendreturncopyendyarn:
yarn add --dev prettier @prettier/plugin-lua
# or globally
yarn global add prettier @prettier/plugin-luanpm:
npm install --save-dev prettier @prettier/plugin-lua
# or globally
npm install --global prettier @prettier/plugin-luaIf you installed prettier as a local dependency, you can add prettier as a script in your package.json,
"scripts": {
"prettier": "prettier"
}also add it as a plugin to your prettierrc,
"plugins": [
"@prettier/plugin-lua"
]and then run it via
yarn run prettier path/to/file.lua --write
# or
npm run prettier -- path/to/file.lua --writeIf you installed globally, run
prettier path/to/file.lua --writeIntegration in the prettier plugin for your favorite editor might not be working yet, see the related issues for VS Code, Atom and Vim.
For the moment, you can set up prettier to run on save like this:
Install save-autorun and create a .save.cson file in your project with the following content:
"**/*.lua":"prettier ${path} --write"Install Run on Save and add the following section to your settings:
"emeraldwalk.runonsave": {
"commands": [
{
"match": "\\.lua$",
"cmd": "prettier ${file} --write"
}
]
}Adding the following to .vimrc will define a custom command :PrettierLua that runs the plugin while preserving the cursor position and run it on save.
" Prettier for LuafunctionPrettierLuaCursor()
let save_pos =getpos(".")
%! prettier --stdin --parser=luacallsetpos('.', save_pos)
endfunction" define custom commandcommand PrettierLua callPrettierLuaCursor()
" format on saveautocmdBufwritePre*.lua PrettierLuaInstall JsPrettier using Package Control and add the following to your <project_name>.sublime-project project-level file:
{
"settings": {
"js_prettier": {
"auto_format_on_save": true,
"custom_file_extensions": ["lua"],
}
}
}
Alternatively, "custom_file_extensions": ["lua"] can be added to the JsPrettier plugin user settings.
If you're interested in contributing to the development of Prettier for Lua, you can follow the CONTRIBUTING guide from Prettier, as it all applies to this repository too.
To test it out on a Lua file:
- Clone this repository.
- Run
yarn. - Create a file called
test.lua. - Run
yarn prettier test.luato check the output.