StyLua
StyLua copied to clipboard
`foo[([==[bar]==])] = true` is incorrectly formatted
local foo = {
[([==[bar]==])] = true,
[([=[bar]=])] = true,
[([[bar]])] = true,
}
foo[([==[bar]==])] = true
foo[([=[bar]=])] = true
foo[([[bar]])] = true
will be converted to error format
local foo = {
[[==[bar]==]] = true,
[[=[bar]=]] = true,
[[[bar]]] = true,
}
foo[[==[bar]==]] = true
foo[[=[bar]=]] = true
foo[[[bar]]] = true