Skip to content

Commit 90310b3

Browse files
Christopher QuadfliegShinigami92
authored andcommitted
chore(revert): preserve test cases
1 parent a7218dc commit 90310b3

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

  • packages/playground/tsconfig-json

packages/playground/tsconfig-json/nested-with-extends/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// @ts-nocheck
2-
import type { NestedWithExtendsTypeOnlyClass } from './not-used-type'
2+
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
3+
import { NestedWithExtendsTypeOnlyClass } from './not-used-type'
34

45
class NestedWithExtendsBase {
56
set data(value: string) {

packages/playground/tsconfig-json/nested/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// @ts-nocheck
2-
import type { NestedTypeOnlyClass } from './not-used-type'
2+
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
3+
import { NestedTypeOnlyClass } from './not-used-type'
34

45
class NestedBase {
56
set data(value: string) {

0 commit comments

Comments
 (0)