Skip to content

Commit

Permalink
refactor: support no-import-type-side-effects (#8926)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Sep 10, 2024
1 parent a46e8b2 commit f2c4dea
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@
"plugin:@taiga-ui/experience/entry-points"
],
"rules": {
"@typescript-eslint/no-import-type-side-effects": "off",
"@typescript-eslint/prefer-regexp-exec": "off",
"jest/prefer-importing-jest-globals": "off",
"sonarjs/arguments-order": "off",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {NgForOf} from '@angular/common';
import {type AfterViewInit, type QueryList} from '@angular/core';
import type {AfterViewInit, QueryList} from '@angular/core';
import {
ChangeDetectionStrategy,
Component,
Expand Down
7 changes: 1 addition & 6 deletions projects/core/directives/dropdown/dropdown.directive.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
import {
type AfterViewChecked,
type ComponentRef,
type OnChanges,
type OnDestroy,
} from '@angular/core';
import type {AfterViewChecked, ComponentRef, OnChanges, OnDestroy} from '@angular/core';
import {
ChangeDetectorRef,
Directive,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import {
import type {TuiMarkerHandler} from '@taiga-ui/core/components/calendar';
import {TUI_DATE_FORMAT, TUI_DEFAULT_DATE_FORMAT} from '@taiga-ui/core/tokens';
import type {TuiSizeL, TuiSizeS} from '@taiga-ui/core/types';
import {type TuiDayRangePeriod} from '@taiga-ui/kit/components/calendar-range';
import type {TuiDayRangePeriod} from '@taiga-ui/kit/components/calendar-range';
import type {TuiInputDateOptions} from '@taiga-ui/kit/tokens';
import {
TUI_DATE_RANGE_VALUE_TRANSFORMER,
Expand Down

0 comments on commit f2c4dea

Please sign in to comment.