This rule effects failures if an index module is specified as the import location.
Examples of incorrect code for this rule:
import { of } from "rxjs/index";
Examples of correct code for this rule:
import { of } from "rxjs";
This rule has no options.