When using an import such as below:
import { Component, OnInit } from "@angular/core";
Is it convention to use single or double quotes around "@angular/core"?
TSLint complians saying:
[tslint] " should be ' (quotemark)
This seems odd as the file was created with the angular-cli command
ng g c someComponent
so it would seem that it would create the imports to typescripts standards so now I'm not sure which format is correct.