CppCXY / EmmyLuaCodeStyle

fast, powerful, and feature-rich Lua formatting and checking tool.
MIT License
138 stars 26 forks source link

Align issue #152

Closed ghost closed 10 months ago

ghost commented 10 months ago

Alignment working only if i add minimum one more space between name and equal sign:

t1_before = {
  a= 1,
  bb = 22,
  ccc= 333,
}

t1_after = {
  a = 1,
  bb = 22,
  ccc = 333,
}

t2_before = {
  a= 1,
  bb = 22,
  ccc  = 333,
}

t2_after = {
  a   = 1,
  bb  = 22,
  ccc = 333,
}
CppCXY commented 10 months ago

it's design

CppCXY commented 10 months ago

you can set to "always"