diff --git a/src/@fuse/components/alert/alert.component.ts b/src/@fuse/components/alert/alert.component.ts index d8e0fd6d..4abe0502 100644 --- a/src/@fuse/components/alert/alert.component.ts +++ b/src/@fuse/components/alert/alert.component.ts @@ -53,6 +53,7 @@ export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy */ @HostBinding('class') get classList(): any { + /* eslint-disable @typescript-eslint/naming-convention */ return { 'fuse-alert-appearance-border' : this.appearance === 'border', 'fuse-alert-appearance-fill' : this.appearance === 'fill', @@ -70,6 +71,7 @@ export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy 'fuse-alert-type-warning' : this.type === 'warning', 'fuse-alert-type-error' : this.type === 'error' }; + /* eslint-enable @typescript-eslint/naming-convention */ } // ----------------------------------------------------------------------------------------------------- diff --git a/src/@fuse/components/card/card.component.ts b/src/@fuse/components/card/card.component.ts index bd9e0f7d..9d3962a2 100644 --- a/src/@fuse/components/card/card.component.ts +++ b/src/@fuse/components/card/card.component.ts @@ -38,12 +38,14 @@ export class FuseCardComponent implements OnChanges */ @HostBinding('class') get classList(): any { + /* eslint-disable @typescript-eslint/naming-convention */ return { 'fuse-card-expanded' : this.expanded, 'fuse-card-face-back' : this.flippable && this.face === 'back', 'fuse-card-face-front': this.flippable && this.face === 'front', 'fuse-card-flippable' : this.flippable }; + /* eslint-enable @typescript-eslint/naming-convention */ } // ----------------------------------------------------------------------------------------------------- diff --git a/src/@fuse/components/drawer/drawer.component.ts b/src/@fuse/components/drawer/drawer.component.ts index 2747c8fc..db2aae69 100644 --- a/src/@fuse/components/drawer/drawer.component.ts +++ b/src/@fuse/components/drawer/drawer.component.ts @@ -62,6 +62,7 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy */ @HostBinding('class') get classList(): any { + /* eslint-disable @typescript-eslint/naming-convention */ return { 'fuse-drawer-animations-enabled' : this._animationsEnabled, 'fuse-drawer-fixed' : this.fixed, @@ -70,6 +71,7 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy 'fuse-drawer-opened' : this.opened, [`fuse-drawer-position-${this.position}`]: true }; + /* eslint-enable @typescript-eslint/naming-convention */ } /** diff --git a/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.ts b/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.ts index 68d6c38b..963a2ee7 100644 --- a/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.ts +++ b/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.ts @@ -48,10 +48,12 @@ export class FuseVerticalNavigationCollapsableItemComponent implements OnInit, O */ @HostBinding('class') get classList(): any { + /* eslint-disable @typescript-eslint/naming-convention */ return { 'fuse-vertical-navigation-item-collapsed': this.isCollapsed, 'fuse-vertical-navigation-item-expanded' : this.isExpanded }; + /* eslint-enable @typescript-eslint/naming-convention */ } // ----------------------------------------------------------------------------------------------------- diff --git a/src/@fuse/components/navigation/vertical/vertical.component.ts b/src/@fuse/components/navigation/vertical/vertical.component.ts index 33722098..13f765be 100644 --- a/src/@fuse/components/navigation/vertical/vertical.component.ts +++ b/src/@fuse/components/navigation/vertical/vertical.component.ts @@ -89,6 +89,7 @@ export class FuseVerticalNavigationComponent implements OnChanges, OnInit, After */ @HostBinding('class') get classList(): any { + /* eslint-disable @typescript-eslint/naming-convention */ return { 'fuse-vertical-navigation-animations-enabled' : this._animationsEnabled, [`fuse-vertical-navigation-appearance-${this.appearance}`]: true, @@ -100,6 +101,7 @@ export class FuseVerticalNavigationComponent implements OnChanges, OnInit, After 'fuse-vertical-navigation-position-left' : this.position === 'left', 'fuse-vertical-navigation-position-right' : this.position === 'right' }; + /* eslint-enable @typescript-eslint/naming-convention */ } /** diff --git a/src/@fuse/services/config/config.service.ts b/src/@fuse/services/config/config.service.ts index 33948a0f..cfdd2105 100644 --- a/src/@fuse/services/config/config.service.ts +++ b/src/@fuse/services/config/config.service.ts @@ -35,6 +35,7 @@ export class FuseConfigService this._config.next(config); } + // eslint-disable-next-line @typescript-eslint/member-ordering get config$(): Observable { return this._config.asObservable();