IntelliJ - 在使用自动格式化/重新格式化时展开Angular导入

时间:2018-05-28 07:29:21

标签: intellij-idea webstorm jetbrains-ide

我在使用IntelliJ进行自动格式化时遇到问题。当我按下Ctrl+Alt+L时,IntelliJ展开了许多从Angular的导入,从下面的例子中可以看到一行到多行:

import {
  Component,
  ElementRef,
  Input,
  OnInit,
  QueryList,
  ViewChild,
  ViewChildren
} from '@angular/core';

但以前的所有内容都在一行中:

import {Component, ElementRef, Input, OnInit, QueryList, Renderer2, ViewChild, ViewChildren} from '@angular/core';

我可以强制IDE不将这些导入展开到这么多行吗?

修改

My editor settings

1 个答案:

答案 0 :(得分:1)

在Intellij中 - >设置 - >编辑 - >代码风格 - > JavaScript选择“ES6 import / export”=“Do not wrap”