Skip to content

Commit 2d10605

Browse files
author
Nathan
authored
Merge pull request #3788 from cloudfoundry-incubator/fix-lint
Fix linting
2 parents 67c7047 + 147f420 commit 2d10605

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

src/frontend/packages/cloud-foundry/src/shared/components/cards/card-cf-info/card-cf-info.component.ts

+4-6
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,15 @@ import { MatDialog } from '@angular/material';
33
import { Observable, Subscription } from 'rxjs';
44
import { map, tap } from 'rxjs/operators';
55

6-
import {
7-
CloudFoundryEndpointService,
8-
} from '../../../../../../cloud-foundry/src/features/cloud-foundry/services/cloud-foundry-endpoint.service';
9-
import {
10-
UserInviteConfigurationDialogComponent,
11-
} from '../../../../../../cloud-foundry/src/features/cloud-foundry/user-invites/configuration-dialog/user-invite-configuration-dialog.component';
126
import {
137
UserInviteService,
148
} from '../../../../../../cloud-foundry/src/features/cloud-foundry/user-invites/user-invite.service';
159
import { ICfV2Info } from '../../../../../../core/src/core/cf-api.types';
1610
import { APIResource, EntityInfo } from '../../../../../../store/src/types/api.types';
11+
import { CloudFoundryEndpointService } from '../../../../features/cloud-foundry/services/cloud-foundry-endpoint.service';
12+
import {
13+
UserInviteConfigurationDialogComponent,
14+
} from '../../../../features/cloud-foundry/user-invites/configuration-dialog/user-invite-configuration-dialog.component';
1715

1816
@Component({
1917
selector: 'app-card-cf-info',

src/frontend/packages/cloud-foundry/src/shared/components/components.module.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// tslint:disable:max-line-length
12
import { CommonModule } from '@angular/common';
23
import { ApplicationModule, NgModule } from '@angular/core';
34
import { MaterialDesignFrameworkModule } from 'stratos-angular6-json-schema-form';
@@ -6,6 +7,9 @@ import { CoreModule } from '../../../../core/src/core/core.module';
67
import {
78
TableCellCfCellComponent,
89
} from '../../../../core/src/shared/components/list/list-types/app-instance/table-cell-cf-cell/table-cell-cf-cell.component';
10+
import {
11+
TableCellQuotaComponent,
12+
} from '../../../../core/src/shared/components/list/list-types/cf-quotas/table-cell-quota/table-cell-quota.component';
913
import { SharedModule } from '../../../../core/src/shared/shared.module';
1014
import {
1115
AddServiceInstanceBaseStepComponent,
@@ -127,7 +131,8 @@ import { SelectServiceComponent } from './select-service/select-service.componen
127131
import { ServiceIconComponent } from './service-icon/service-icon.component';
128132
import { ServicePlanPriceComponent } from './service-plan-price/service-plan-price.component';
129133
import { ServicePlanPublicComponent } from './service-plan-public/service-plan-public.component';
130-
import { TableCellQuotaComponent } from '../../../../core/src/shared/components/list/list-types/cf-quotas/table-cell-quota/table-cell-quota.component';
134+
135+
// tslint:enable:max-line-length
131136

132137
@NgModule({
133138
imports: [

src/frontend/packages/cloud-foundry/src/shared/components/list/list-types/app-sevice-bindings/app-service-binding-list-config.service.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ import { switchMap } from 'rxjs/operators';
66
import { CFAppState } from '../../../../../../../cloud-foundry/src/cf-app-state';
77
import { ApplicationService } from '../../../../../../../cloud-foundry/src/features/applications/application.service';
88
import { isServiceInstance } from '../../../../../../../cloud-foundry/src/features/cloud-foundry/cf.helpers';
9-
import {
10-
TableCellServiceInstanceTagsComponent,
11-
} from '../../../../../../../cloud-foundry/src/shared/components/list/list-types/cf-spaces-service-instances/table-cell-service-instance-tags/table-cell-service-instance-tags.component';
129
import { IServiceBinding } from '../../../../../../../core/src/core/cf-api-svc.types';
1310
import { CurrentUserPermissions } from '../../../../../../../core/src/core/current-user-permissions.config';
1411
import { CurrentUserPermissionsService } from '../../../../../../../core/src/core/current-user-permissions.service';
@@ -20,6 +17,9 @@ import { ListView } from '../../../../../../../store/src/actions/list.actions';
2017
import { RouterNav } from '../../../../../../../store/src/actions/router.actions';
2118
import { APIResource } from '../../../../../../../store/src/types/api.types';
2219
import { BaseCfListConfig } from '../base-cf/base-cf-list-config';
20+
import {
21+
TableCellServiceInstanceTagsComponent,
22+
} from '../cf-spaces-service-instances/table-cell-service-instance-tags/table-cell-service-instance-tags.component';
2323
import { AppServiceBindingCardComponent } from './app-service-binding-card/app-service-binding-card.component';
2424
import { AppServiceBindingDataSource } from './app-service-binding-data-source';
2525

src/frontend/packages/cloud-foundry/src/shared/components/list/list-types/cf-cell-health/cf-cell-health-list-config.service.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// tslint:disable:max-line-length
12
import { DatePipe } from '@angular/common';
23
import { Injectable } from '@angular/core';
34
import { Store } from '@ngrx/store';
@@ -24,6 +25,8 @@ import {
2425
import { BaseCfListConfig } from '../base-cf/base-cf-list-config';
2526
import { CfCellHealthDataSource, CfCellHealthEntry, CfCellHealthState } from './cf-cell-health-source';
2627

28+
// tslint:enable:max-line-length
29+
2730
@Injectable()
2831
export class CfCellHealthListConfigService extends BaseCfListConfig<CfCellHealthEntry> {
2932

src/frontend/packages/cloud-foundry/src/shared/components/list/list-types/cf-cells/cf-cells-list-config.service.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// tslint:disable:max-line-length
12
import { Injectable } from '@angular/core';
23
import { Store } from '@ngrx/store';
34

@@ -18,6 +19,8 @@ import { ActiveRouteCfCell } from '../../../../../features/cloud-foundry/cf-page
1819
import { BaseCfListConfig } from '../base-cf/base-cf-list-config';
1920
import { CfCellsDataSource } from './cf-cells-data-source';
2021

22+
// tslint:enable:max-line-length
23+
2124
@Injectable()
2225
export class CfCellsListConfigService extends BaseCfListConfig<IMetricVectorResult<IMetricCell>> {
2326

0 commit comments

Comments
 (0)