Defold IDE editor script that reformats your Lua source code. Uses LuaFormatter.
You can use this editor script in your own project by adding it as a Defold library dependency. Open your game.project
file and in the dependencies field under project add:
https://github.com/indiesoftby/defold-editor-script-lua-format/archive/master.zip
The script will work if you simply copy paste the script folder into your project.
This script is accessible through the context menu in the asset view, it's context sensitive and will only show when you are clicking on the relevant file - .lua
, .script
, .editor_script
, .gui_script
or .render_script
.
Git has a way of firing off custom scripts that perform certain operations. These scripts are referred to as hooks. The hooks are all stored in the hooks
subdirectory of the Git directory that's .git/hooks
.
Note: .git/hooks
directory isn't cloned with the rest of your project, nor is it under version control.
editor-script-lua-format/git-hooks/pre-commit
contains a sample hook that applies a coding style with lua-format
to staged files. It will help you format your code before you commit them. So when you try to commit your code, given script will run and format staged files.
Copy contents of the sample pre-commit hook to the custom pre-commit:
$ cp ./editor-script-lua-format/git-hooks/pre-commit ./git/hooks/pre-commit
Make the pre-commit script executable (only on Linux and macOS):
$ chmod +x ./git/hooks/pre-commit
Lua formatter will attempt to automatically use the root directory's .lua-format
file. In case there's no file, it will fallback to the default configuration.
See this file
column_limit: 80
indent_width: 4
use_tab: false
tab_width: 4
continuation_indent_width: 4
spaces_before_call: 1
keep_simple_control_block_one_line: true
keep_simple_function_one_line: true
align_args: true
break_after_functioncall_lp: false
break_before_functioncall_rp: false
align_parameter: true
chop_down_parameter: false
break_after_functiondef_lp: false
break_before_functiondef_rp: false
align_table_field: true
break_after_table_lb: true
break_before_table_rb: true
chop_down_table: false
chop_down_kv_table: true
table_sep: ","
extra_sep_at_table_end: false
break_after_operator: true
double_quote_to_single_quote: false
single_quote_to_double_quote: false
- Does not work when source file contains syntax error
Apache 2 License.