我在使用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不将这些导入展开到这么多行吗?
修改
答案 0 :(得分:1)
在Intellij中 - >设置 - >编辑 - >代码风格 - > JavaScript选择“ES6 import / export”=“Do not wrap”