Skip to content

Commit

Permalink
Fixed linter
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Dec 12, 2024
1 parent 295f972 commit 7e3274a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src-admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"start": "vite",
"build": "vite build",
"lint": "eslint --fix --ext .js,.jsx,.tsx src",
"lint": "eslint -c eslint.config.mjs",
"check-ts": "tsc --noEmit --checkJS false",
"tsc": "tsc --project tsconfig.json"
},
Expand Down
1 change: 0 additions & 1 deletion src-admin/src/Tabs/BridgesAndDevices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ class BridgesAndDevices<TProps extends BridgesAndDevicesProps, TState extends Br
TProps,
TState
> {
// eslint-disable-next-line react/no-unused-class-component-methods
protected isDevice: boolean;

constructor(props: TProps) {
Expand Down
2 changes: 1 addition & 1 deletion src-admin/src/Tabs/Devices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react';
import { v4 as uuidv4 } from 'uuid';

import { IconButton } from '@foxriver76/iob-component-lib';
import { Add, AutoMode, Close, Delete, DeviceHub, FormatListBulleted, QuestionMark, Save } from '@mui/icons-material';
import { Add, AutoMode, Close, Delete, DeviceHub, FormatListBulleted, Save } from '@mui/icons-material';
import {
Button,
Checkbox,
Expand Down
5 changes: 3 additions & 2 deletions src-admin/src/Tabs/Options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import {
DialogTitle,
Fab,
FormControl,
FormControlLabel, IconButton,
FormControlLabel,
IconButton,
InputLabel,
MenuItem,
Select,
Expand All @@ -19,7 +20,7 @@ import {
Typography,
} from '@mui/material';

import {Check, Close, LayersClear, AutoAwesome, Clear, VisibilityOff, Visibility} from '@mui/icons-material';
import { Check, Close, LayersClear, AutoAwesome, Clear, VisibilityOff, Visibility } from '@mui/icons-material';

import { type AdminConnection, I18n, Logo } from '@iobroker/adapter-react-v5';

Expand Down

0 comments on commit 7e3274a

Please sign in to comment.