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?
You can change the settings to import entire packages instead. In the Settings/Preferences dialog ( Ctrl+Alt+S ), select Editor | Code Style | Java | Imports. Clear the Use single class import checkbox, and apply the changes.
If we want to go a step further and sort the imports, we can go to Preferences / Settings | Editor | Code Style | JavaScript or TypeScript and select Sort imports by modules on the Imports tab.
Disable File | Settings | Editor | General | Auto Import | Optimize imports on the fly. Normally you don't need to add imports manually, IDEA does it for you.
To disable auto imports, set "javascript.suggest.autoImports" to false .
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.*:
Settings | Code Style | Typescript | Spaces
, enable Within / ES6 import/export braces
Settings | Code Style | Typescript | Punctuation
, set Use
to single
You can change this in:
Settings | Code Style | Typescript | Other
Select Single quote for Quote marks in Generated code section
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With