StyLua icon indicating copy to clipboard operation
StyLua copied to clipboard

Luau: weird formatting of multiline unions

Open JohnnyMorganz opened this issue 10 months ago • 0 comments

export type AstExprTableItem =
	| { kind: "list", value: AstExpr, separator: Token<"," | ";">? }
	| { kind: "record", key: string, equals: Token<"=">, value: AstExpr, separator: Token<"," | ";">? }
	| { kind: "general", key: string, equals: Token<"=">, value: AstExpr, separator: Token<"," | ";">? }

... gets formatted as ...

export type AstExprTableItem = | { kind: "list", value: AstExpr, separator: Token<"," | ";">? } | {
	kind: "record",
	key: string,
	equals: Token<"=">,
	value: AstExpr,
	separator: Token<"," | ";">?,
} | {
	kind: "general",
	key: string,
	equals: Token<"=">,
	value: AstExpr,
	separator: Token<"," | ";">?,
}

JohnnyMorganz avatar Feb 16 '25 11:02 JohnnyMorganz