diff --git a/src/SIL.XForge.Scripture/ClientApp/src/app/app.component.ts b/src/SIL.XForge.Scripture/ClientApp/src/app/app.component.ts index 877c539e55e..d59305795a3 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/app/app.component.ts +++ b/src/SIL.XForge.Scripture/ClientApp/src/app/app.component.ts @@ -134,7 +134,6 @@ export class AppComponent extends DataLoadingComponent implements OnInit, OnDest ); navEndEvent$.pipe(quietTakeUntilDestroyed(this.destroyRef)).subscribe(e => { if (this.isAppOnline) { - // eslint-disable-next-line @typescript-eslint/naming-convention gtag('config', 'UA-22170471-15', { page_path: e.urlAfterRedirects }); } }); diff --git a/src/SIL.XForge.Scripture/ClientApp/src/app/shared/audio-recorder-dialog/audio-recorder-dialog.component.ts b/src/SIL.XForge.Scripture/ClientApp/src/app/shared/audio-recorder-dialog/audio-recorder-dialog.component.ts index 19a0a71399b..3d987bf06e6 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/app/shared/audio-recorder-dialog/audio-recorder-dialog.component.ts +++ b/src/SIL.XForge.Scripture/ClientApp/src/app/shared/audio-recorder-dialog/audio-recorder-dialog.component.ts @@ -52,7 +52,6 @@ export interface AudioRecorderDialogResult { styleUrl: './audio-recorder-dialog.component.scss', imports: [UICommonModule, CommonModule, SharedModule, TranslocoModule] }) -/* eslint-disable brace-style */ export class AudioRecorderDialogComponent implements ControlValueAccessor, OnInit, OnDestroy { @ViewChild(SingleButtonAudioPlayerComponent) audioPlayer?: SingleButtonAudioPlayerComponent; @Output() status = new EventEmitter(); diff --git a/src/SIL.XForge.Scripture/ClientApp/src/app/shared/copyright-banner/copyright-banner.component.ts b/src/SIL.XForge.Scripture/ClientApp/src/app/shared/copyright-banner/copyright-banner.component.ts index 4fbe10faffe..bc3d7d6fb7b 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/app/shared/copyright-banner/copyright-banner.component.ts +++ b/src/SIL.XForge.Scripture/ClientApp/src/app/shared/copyright-banner/copyright-banner.component.ts @@ -32,7 +32,6 @@ export class CopyrightBannerComponent { // allowing non-null assertion for this.notice as the link to open the dialog is only shown when // this.notice is defined (this.showMoreInfo) - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion let copyrightNotice = this.notice!.trim(); if (copyrightNotice[0] !== '<') { // If copyright is plain text, remove the first line and add paragraph markers. diff --git a/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/draft-sources/draft-sources.component.ts b/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/draft-sources/draft-sources.component.ts index ac80237d32d..d7ea1e8dbd6 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/draft-sources/draft-sources.component.ts +++ b/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/draft-sources/draft-sources.component.ts @@ -76,7 +76,6 @@ export class DraftSourcesComponent extends DataLoadingComponent implements Confi static readonly projectSettingValueUnset = 'unset'; // Expose ElementState enum to template. - // eslint-disable-next-line @typescript-eslint/naming-convention ElementState = ElementState; step = 1; diff --git a/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/mock-pretranslation-machine-api.ts b/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/mock-pretranslation-machine-api.ts index a3d8f4a0f43..a493822c93e 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/mock-pretranslation-machine-api.ts +++ b/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/mock-pretranslation-machine-api.ts @@ -1,4 +1,3 @@ -/* eslint-disable brace-style */ import { Injectable } from '@angular/core'; import { Observable, of, Subscription, timer } from 'rxjs'; import { map, takeWhile } from 'rxjs/operators'; diff --git a/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/data-loading-component.ts b/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/data-loading-component.ts index 62841d5716f..139f3eb68ee 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/data-loading-component.ts +++ b/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/data-loading-component.ts @@ -9,7 +9,6 @@ import { NoticeService } from './notice.service'; */ // Decorator required by Angular compiler @Directive() -// eslint-disable-next-line @angular-eslint/directive-class-suffix export abstract class DataLoadingComponent implements OnDestroy { private _isLoading$ = new BehaviorSubject(false); private _isLoaded$ = new BehaviorSubject(false); diff --git a/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/paginator/paginator.component.ts b/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/paginator/paginator.component.ts index ee7b247fb58..c475ca79450 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/paginator/paginator.component.ts +++ b/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/paginator/paginator.component.ts @@ -5,7 +5,6 @@ import { Subscription } from 'rxjs'; // Decorator required by Angular compiler @Directive() -// eslint-disable-next-line @angular-eslint/directive-class-suffix export class Paginator extends MatPaginatorIntl implements OnDestroy { itemsPerPageLabel = ''; nextPageLabel = ''; diff --git a/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/subscription-disposable.ts b/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/subscription-disposable.ts index 9b9ee2771b3..9e750c5a9c2 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/subscription-disposable.ts +++ b/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/subscription-disposable.ts @@ -9,7 +9,6 @@ import { takeUntil } from 'rxjs/operators'; */ // Decorator required by Angular compiler @Directive() -// eslint-disable-next-line @angular-eslint/directive-class-suffix export abstract class SubscriptionDisposable implements OnDestroy { protected ngUnsubscribe: Subject = new Subject(); diff --git a/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/write-status/write-status.component.ts b/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/write-status/write-status.component.ts index fa09df80a48..ed643638c95 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/write-status/write-status.component.ts +++ b/src/SIL.XForge.Scripture/ClientApp/src/xforge-common/write-status/write-status.component.ts @@ -12,6 +12,5 @@ export class WriteStatusComponent { @Input() state?: ElementState; @Input() formGroup?: FormGroup; - // eslint-disable-next-line @typescript-eslint/naming-convention ElementState = ElementState; }