Place each decorator on a new line

EditorConfig key: js-place-each-decorator-on-new-line

Place each decorator on a new line

js-place-each-decorator-on-new-line

If true, every decorator gets its own line.

Default value:

true

Possible values:

  • true
  • false

Examples

true
@A
@B
class C {}
false
@A @B class C {}