2
votes

I develop with PhpStorm.

For TypeScript project, I like the function "Auto Import" when I typing a module name.

But when I would like to load (for instance) NgbModule, I have the following auto import:

import {NgbModule} from "@ng-bootstrap/ng-bootstrap";

How can I configure PhpStorm to use single quotation bracket instead the double? like this:

import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
1

1 Answers

3
votes

Please set Use single quotes always in Preferences | Editor | Code Style | TypeScript | Punctuation.