Koihik / LuaFormatter

Code formatter for Lua
Apache License 2.0
708 stars 86 forks source link

Wishlist: Separate `table_sep` option for array and key-value items. #282

Open Zash opened 1 year ago

Zash commented 1 year ago

E.g. to produce

local some_table = {
  foo = "bar";
  baz = "moo";
  "lorem",
  "ipsum",
  "dolor",
  "sit",
  "amet"
 }

Where the key = value pairs use one table_sep option and array items use another, per convention in some project(s?).