Skip to content

Commit

Permalink
chore: 🤖 fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
TomTomB committed Nov 20, 2022
1 parent d5862ad commit 8704997
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { Meta, Story } from '@storybook/angular';
import { StorybookBracketComponent } from './components';
import { ET_DUMMY_DATA_DOUBLE_ASYNC, ET_DUMMY_DATA_DOUBLE_SYNC, ET_DUMMY_DATA_SINGLE } from './dummy-data';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Directive, ElementRef, HostBinding, inject, Input, OnInit, Optional } from '@angular/core';
import { Directive, ElementRef, HostBinding, inject, Input, OnInit } from '@angular/core';
import { BottomSheetService } from '../../services';
import { BottomSheetRef, getClosestBottomSheet } from '../../utils';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Directive, ElementRef, HostBinding, inject, Input, OnInit, Optional } from '@angular/core';
import { Directive, ElementRef, HostBinding, inject, Input, OnInit } from '@angular/core';
import { DialogService } from '../../services';
import { DialogRef, getClosestDialog } from '../../utils';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { JsonPipe } from '@angular/common';
import { ChangeDetectionStrategy, Component, inject, Inject, ViewEncapsulation } from '@angular/core';
import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
import { DIALOG_DATA } from '../../constants';
import { DialogTitleDirective, DialogCloseDirective } from '../../partials';
import { DialogCloseDirective, DialogTitleDirective } from '../../partials';
import { DialogRef } from '../../utils';

@Component({
Expand Down

0 comments on commit 8704997

Please sign in to comment.