XSharpPublic icon indicating copy to clipboard operation
XSharpPublic copied to clipboard

formatter indents attributes incorrectly

Open hpetriffer opened this issue 2 years ago • 0 comments

In the following example the attribute is intended automatically wrong

class Test
	[Obsolete];
	public method TestMethod1() as void
		return

		[Obsolete];
	public method TestMethod1() as void
		return
end class

I expect the obsolete attribute always aligned to the method

hpetriffer avatar Nov 21 '23 15:11 hpetriffer