chore(lint): enable duplicateModuleImport tslint check

This commit is contained in:
Alex Eagle
2016-05-26 15:07:51 -07:00
parent 5f999225ba
commit 2019050db2
20 changed files with 46 additions and 57 deletions

View File

@ -13,10 +13,7 @@ import {
ViewChildrenMetadata,
ViewQueryMetadata,
QueryMetadata,
} from '@angular/core';
import {ReflectorReader} from './core_private';
import {Provider} from '@angular/core';
import {
Provider,
HostMetadata,
OptionalMetadata,
InjectableMetadata,
@ -24,6 +21,7 @@ import {
SkipSelfMetadata,
InjectMetadata,
} from "@angular/core";
import {ReflectorReader} from "./core_private";
/**
* The host of the static resolver is expected to be able to provide module metadata in the form of
@ -407,4 +405,4 @@ function mapStringMap(input: {[key: string]: any},
function isPrimitive(o: any): boolean {
return o === null || (typeof o !== "function" && typeof o !== "object");
}
}