Skip to content

Commit 42185c6

Browse files
committed
[auto-fix] Apply ESLint and Prettier fixes
1 parent 8b81113 commit 42185c6

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

src/extensions/core/load3d/LightingManager.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import * as THREE from 'three'
22

3-
import { type EventManagerInterface, type LightingManagerInterface } from './interfaces'
3+
import {
4+
type EventManagerInterface,
5+
type LightingManagerInterface
6+
} from './interfaces'
47

58
export class LightingManager implements LightingManagerInterface {
69
lights: THREE.Light[] = []

src/extensions/core/load3d/PreviewManager.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import * as THREE from 'three'
22
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls'
33

4-
import { type EventManagerInterface, type PreviewManagerInterface } from './interfaces'
4+
import {
5+
type EventManagerInterface,
6+
type PreviewManagerInterface
7+
} from './interfaces'
58

69
export class PreviewManager implements PreviewManagerInterface {
710
previewCamera: THREE.Camera

src/extensions/core/load3d/SceneManager.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ import * as THREE from 'three'
22
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls'
33

44
import Load3dUtils from './Load3dUtils'
5-
import { type EventManagerInterface, type SceneManagerInterface } from './interfaces'
5+
import {
6+
type EventManagerInterface,
7+
type SceneManagerInterface
8+
} from './interfaces'
69

710
export class SceneManager implements SceneManagerInterface {
811
scene: THREE.Scene

src/extensions/core/load3d/ViewHelperManager.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ import * as THREE from 'three'
22
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls'
33
import { ViewHelper } from 'three/examples/jsm/helpers/ViewHelper'
44

5-
import { type NodeStorageInterface, type ViewHelperManagerInterface } from './interfaces'
5+
import {
6+
type NodeStorageInterface,
7+
type ViewHelperManagerInterface
8+
} from './interfaces'
69

710
export class ViewHelperManager implements ViewHelperManagerInterface {
811
viewHelper: ViewHelper = {} as ViewHelper

tests-ui/tests/litegraph/core/NodeSlot.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import { describe, expect, it } from 'vitest'
22

3-
import { type INodeInputSlot, type INodeOutputSlot } from '@/lib/litegraph/src/litegraph'
3+
import type {
4+
INodeInputSlot,
5+
INodeOutputSlot
6+
} from '@/lib/litegraph/src/litegraph'
47
import {
58
inputAsSerialisable,
69
outputAsSerialisable

0 commit comments

Comments
 (0)