I am looking to modify the custom formatter in WebStorm IDE. Whenever I use the [ctrl] + [alt] + [o] hotkey, my imports in TypeScript files are formatted like this:
import {HttpModule} from "@angular/http";
While it's acceptable, TSLint flags this line and displays the following message:
TSLint: " should be ' (quotemark)
Is there a way to adjust Webstorm's custom formatter so that imports are formatted like this instead:
import {HttpModule} from '@angular/http';
Just to clarify, I do not want to change tslint.json.