Using WebStorm for auto-importing TypeScript classes has been a great help to tidy up my code and make it more organized.
However, I have noticed that the imports are always formatted in a single line like this:
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
My team prefers a different format with each import on a new line, like this:
import {
Component,
EventEmitter,
Input,
OnInit,
Output
} from '@angular/core';
This formatting style makes reviewing pull requests easier for us. Is there a way to customize the reformatting or organize imports functionality in WebStorm to support this format? I haven't been able to find a setting for it.