Skip to content

Commit 4785a74

Browse files
authored
More cleanup (#4592)
1 parent 96ddb74 commit 4785a74

33 files changed

+41
-461
lines changed

ui/eslint.config.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,14 @@ export default [
4242
],
4343
},
4444
],
45-
'header/header': 'off',
45+
'header/header': [
46+
'warn',
47+
'line',
48+
[
49+
' Copyright (C) 2025 Intel Corporation',
50+
' SPDX-License-Identifier: Apache-2.0',
51+
],
52+
],
4653
},
4754
},
4855
...compat.extends('plugin:playwright/playwright-test').map((config) => ({

ui/src/components/wizard-steps/interfaces.ts

Lines changed: 0 additions & 12 deletions
This file was deleted.

ui/src/components/wizard-steps/wizard-steps.module.scss

Lines changed: 0 additions & 91 deletions
This file was deleted.

ui/src/components/wizard-steps/wizard-steps.test.tsx

Lines changed: 0 additions & 39 deletions
This file was deleted.

ui/src/components/wizard-steps/wizard-steps.tsx

Lines changed: 0 additions & 78 deletions
This file was deleted.

ui/src/components/wizard-tabs/interfaces.ts

Lines changed: 0 additions & 9 deletions
This file was deleted.

ui/src/components/wizard-tabs/wizard-tabs.module.scss

Lines changed: 0 additions & 36 deletions
This file was deleted.

ui/src/components/wizard-tabs/wizard-tabs.tsx

Lines changed: 0 additions & 36 deletions
This file was deleted.

ui/src/components/zoom/zoom.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import { createContext, Dispatch, ReactNode, SetStateAction, useContext, useState } from 'react';
55

6-
export type ZoomState = { scale: number; translate: { x: number; y: number } };
6+
type ZoomState = { scale: number; translate: { x: number; y: number } };
77
export const Zoom = createContext<ZoomState>({
88
scale: 1.0,
99
translate: { x: 0, y: 0 },

ui/src/features/data-collection/data-collection.component.tsx

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)