Reputation: 222309
I'm using TypeScript style with single quotes, double quotes are used exclusively in HTML templates.
WebStorm/PhpStorm auto import adds import
statements with double quotes and ruins the style. I guess this applies to all JetBrains products.
How can this behaviour be fixed?
Upvotes: 375
Views: 108095
Reputation: 2083
In 2017-2019
this is how we do it:
Code style
in searchTypescript
Punctuation
sectionsingle
quotes Upvotes: 79
Reputation: 2578
1st Things need to check in your Tslint file
"quotemark": [
true,
"Double"
],
It's should be Double rather than Single because it's Failed TSLint Passed on Project Build.
Now go to your Setting | Editor | TypeScript | Punctuation
Select Single from the dropdown and Apply/Ok it.
Now Congrats your IntellijIDEA are applied Double Quotes on AutoImport.
Upvotes: 4
Reputation: 960
For Intellij 2016.3 version it's on Other Tab > Generated Code > Quote Marks
Upvotes: 3
Reputation: 165088
This behaviour is controlled by the following option:
Settings/Preferences
Editor | Code Style | TypeScript
"Punctuation" tab | Generated code -> Quote marks
As of 2017.1 version it's on new Punctuation
tab and options are named a bit differently:
Upvotes: 958
Reputation: 5783
Also if you would like to add automatic space between curly braces when adding imports like so
import { MyComponent } from './my.component';
you may check in tab Spaces | Whithin | ES6 import/export braces
Upvotes: 129