[webapp] 批量处理eslint格式告警
This commit is contained in:
@@ -1,30 +1,26 @@
|
||||
import { NgModule, Type } from '@angular/core';
|
||||
import { SharedModule } from '@shared';
|
||||
|
||||
// dashboard pages
|
||||
import { NgxEchartsModule } from 'ngx-echarts';
|
||||
|
||||
import { DashboardComponent } from './dashboard/dashboard.component';
|
||||
import { RouteRoutingModule } from './routes-routing.module';
|
||||
import {NgxEchartsModule} from "ngx-echarts";
|
||||
// single pages
|
||||
import { CallbackComponent } from './passport/callback.component';
|
||||
import { UserLockComponent } from './passport/lock/lock.component';
|
||||
// passport pages
|
||||
import { UserLoginComponent } from './passport/login/login.component';
|
||||
import { UserRegisterResultComponent } from './passport/register-result/register-result.component';
|
||||
import { UserRegisterComponent } from './passport/register/register.component';
|
||||
import { RouteRoutingModule } from './routes-routing.module';
|
||||
|
||||
const COMPONENTS: Array<Type<void>> = [
|
||||
DashboardComponent,
|
||||
// passport pages
|
||||
UserLoginComponent,
|
||||
UserRegisterComponent,
|
||||
UserRegisterResultComponent,
|
||||
// single pages
|
||||
CallbackComponent,
|
||||
UserLockComponent,
|
||||
UserLockComponent
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [SharedModule, RouteRoutingModule, NgxEchartsModule],
|
||||
declarations: COMPONENTS,
|
||||
imports: [SharedModule, RouteRoutingModule, NgxEchartsModule],
|
||||
declarations: COMPONENTS
|
||||
})
|
||||
export class RoutesModule {}
|
||||
|
||||
Reference in New Issue
Block a user