Skip to content

Commit

Permalink
Merge pull request #6094 from deNBI/fix(linting)_feat-tracking
Browse files Browse the repository at this point in the history
Automated TsLint Linting [refs/heads/feat/tracking]
  • Loading branch information
dweinholz authored Jun 17, 2024
2 parents 551ac15 + 39d5f59 commit aefe149
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
Binary file added .nx/cache/18.3.5-nx.linux-x64-gnu.node
Binary file not shown.
Binary file added .nx/cache/nx_files.nxt
Binary file not shown.
9 changes: 4 additions & 5 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
import { HashLocationStrategy, LocationStrategy, CommonModule } from '@angular/common';
import { environment } from '../environments/environment';
import { ErrorHandler, NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
import { TabsModule } from 'ngx-bootstrap/tabs';
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
import { NgChartsModule } from 'ng2-charts';
import { ModalModule } from 'ngx-bootstrap/modal';
import { PaginationModule } from 'ngx-bootstrap/pagination';
import { ClipboardModule } from 'ngx-clipboard';

import { NgScrollbarModule } from 'ngx-scrollbar';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { Angulartics2Module } from 'angulartics2';
Expand All @@ -19,6 +16,9 @@ import { TimepickerModule } from 'ngx-bootstrap/timepicker';
import { BsDatepickerModule } from 'ngx-bootstrap/datepicker';
import { NgSelectModule } from '@ng-select/ng-select';
import { AlertModule } from 'ngx-bootstrap/alert';
import { MatomoModule, MatomoRouterModule } from 'ngx-matomo-client';
import { environment } from '../environments/environment';

import { AppComponent } from './app.component';

import { ApiSettings } from './api-connector/api-settings.service';
Expand Down Expand Up @@ -46,7 +46,6 @@ import { VoService } from './api-connector/vo.service';
import { TokenInterceptor } from './api-connector/token-interceptor';
import { PipeModuleModule } from './pipe-module/pipe-module.module';
import { FacilityService } from './api-connector/facility.service';
import { MatomoModule, MatomoRouterModule } from 'ngx-matomo-client';

/**
* App module.
Expand Down Expand Up @@ -76,7 +75,7 @@ import { MatomoModule, MatomoRouterModule } from 'ngx-matomo-client';
siteId: environment.MATOMO_SITE_ID,
trackerUrl: environment.MATOMO_TRACKING_URL,
}),
MatomoRouterModule,
MatomoRouterModule,
],
declarations: [
AppComponent,
Expand Down
6 changes: 4 additions & 2 deletions src/app/userinfo/userinfo.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import { Component, EventEmitter, OnInit, inject } from '@angular/core';
import {
Component, EventEmitter, OnInit, inject,
} from '@angular/core';
import { forkJoin } from 'rxjs';
import { BsModalRef, BsModalService } from 'ngx-bootstrap/modal';
import { MatomoTracker } from 'ngx-matomo-client';
import { Userinfo } from './userinfo.model';
import { ApiSettings } from '../api-connector/api-settings.service';
import { KeyService } from '../api-connector/key.service';
Expand All @@ -22,7 +25,6 @@ import { Application } from '../applications/application.model/application.model
import { ProjectMember } from '../projectmanagement/project_member.model';
import { Application_States } from '../shared/shared_modules/baseClass/abstract-base-class';
import { NotificationModalComponent } from '../shared/modal/notification-modal';
import { MatomoTracker } from 'ngx-matomo-client';

/**
* UserInformation component.
Expand Down

0 comments on commit aefe149

Please sign in to comment.