我正在使用 WebStorm 2016.3,目前正在从事基于打字稿的项目.
I'm using WebStorm 2016.3 and currently working on typescript based project.
现在自动导入会生成如下内容:
Right now auto import will generate something like this:
import {xxx} from "yyy"
我想把格式改成
import { xxx } from 'yyy'
我该怎么做?
2016.3.*:
在 设置 |代码风格 |打字稿 |空格
,启用Within/ES6导入/导出大括号
在 设置 |代码风格 |打字稿 |其他
,设置引号:
为单引号
2017.1.*:
设置|代码风格 |打字稿 |空格
,启用Within/ES6 import/export 大括号
设置|代码风格 |打字稿 |标点符号
,设置Use
为singleSettings | Code Style | Typescript | Spaces
, enable Within / ES6 import/export braces
Settings | Code Style | Typescript | Punctuation
, set Use
to single这篇关于在 WebStorm 中更改自动导入格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!