Daniel W
Daniel W

Reputation: 1142

Change auto import format in WebStorm

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"

I want to change the format to

import { xxx } from 'yyy'

How do I do this?

Upvotes: 14

Views: 2803

Answers (2)

lena
lena

Reputation: 93868

2016.3.*:

  • in Settings | Code Style | Typescript | Spaces, enable Within / ES6 import/export braces

  • in Settings | Code Style | Typescript | Other, set Quote marks: to Single quotes

2017.1.*:

  • in Settings | Code Style | Typescript | Spaces, enable Within / ES6 import/export braces
  • in Settings | Code Style | Typescript | Punctuation, set Use to single

Upvotes: 26

Aleksey L.
Aleksey L.

Reputation: 38046

You can change this in:

Settings | Code Style | Typescript | Other

Select Single quote for Quote marks in Generated code section

Upvotes: 1

Related Questions