haxe-formatter icon indicating copy to clipboard operation
haxe-formatter copied to clipboard

Feature Request: Empty line after meta-data

Open jgranick opened this issue 6 years ago • 0 comments

Describe the Feature
We'd like to be able to have an empty line after meta-data that's on its own line.

For example, here is the current output we have from formatter:

								  property of the Stage object is set to
								  `StageScaleMode.NO_SCALE` and the
								  SWF file is resized.
	@event stageVideoAvailability Dispatched by the Stage object when the state
								  of the stageVideos property changes.
**/
#if !openfl_debug
@:fileXml('tags="haxe,release"')
@:noDebug
#end
@:access(openfl.display3D.Context3D)
@:access(openfl.display.DisplayObjectRenderer)
@:access(openfl.display.LoaderInfo)
@:access(openfl.display.Sprite)
@:access(openfl.display.Stage3D)
@:access(openfl.events.Event)
@:access(openfl.geom.Matrix)
@:access(openfl.geom.Point)
@:access(openfl.ui.GameInput)
@:access(openfl.ui.Keyboard)
@:access(openfl.ui.Mouse)
class Stage extends DisplayObjectContainer #if lime implements IModule #end
{

We'd like to be able to insert a space again:

@:access(openfl.ui.Mouse)

class Stage extends DisplayObjectContainer #if lime implements IModule #end
{

(this is probably only specific to types)

Thank you!

jgranick avatar Feb 15 '19 00:02 jgranick