EmmyLuaCodeStyle icon indicating copy to clipboard operation
EmmyLuaCodeStyle copied to clipboard

fast, powerful, and feature-rich Lua formatting and checking tool.

Results 30 EmmyLuaCodeStyle issues
Sort by recently updated
recently updated
newest added
trafficstars

**local function** expression is not affected by `line_space_after_function_statement`, or either `line_space_after_local_or_assign_statement` ```lua local a = 1 -- line_space_after_local_or_assign_statement = fixed(1) local Func = function() end -- line_space_after_local_or_assign_statement = fixed(1) function...

feature request

I can write like this and the new lines will just be aligned to `continuation_indent`. - it also seems that `align_call_args = false` does not use `continuation_indent` rule ```lua local...

# Expectation If I set the "line spacing" for something to be `fixed(1)`, there should be one blank line enforced for the relevant items. # Reality "Line spacing" is actually...

```lua -- 没有中文正常对齐 local tab2 = { { "1", { "xxx" }, { "zzzz" }, { "vvvv23" } }, { "2", { "11111111111zzzz", "23" }, { "xxx" }, { "vvvv"...

Updated README_EN.md to enhance clarity and structure, including an introduction to EmmyLuaCodeStyle, editor integration, features, use cases, and build instructions.

Updated the editorconfig for Lua to include detailed comments for all possible properties and their possible values. Unable to confirm the behaviour of a few of the properties? Also found...

- 样本代码 test.lua ``` local sss = { asd =1, a = 20, -- xyz bss = 3, oops = 10, fdgfh = 9, sss = 2, oiu= 23, }...

我用QT实现了一个代码编辑器,我想使用此项目来扩展编辑器代码格式化的功能,我应该使用项目中的那些东西,如何调用呢

`align_continuous_rect_table_field` and `align_continuous_assign_statement` do not work. I'm using [luals](https://luals.github.io/wiki/formatter/) which uses this formatter, config: ```lua lua_ls = { -- cmd = { ... }, -- filetypes = { ... },...

```lua if (a and b) then ... ⬇️ if a and b then ... ```