TSLint requires an import like this...
import { RouterModule } from "@angular/router";
However, my IDE imports everything like this...
import {RouterModule} from "@angular/router";
Now I am sure I can configure the IDE to change this but it would seem to be easier just to turn off this rule. However, I am new to linting and I am not sure where to find the right rule to disable. I still want some enforcement of whitespace (properties etc) but just not this one.
What is the proper setting to turn off just this rule?