refactor(frontend): fix eslint

This commit is contained in:
Sergey Krylov 2025-09-04 05:54:57 +03:00
parent 5b91157e6c
commit f19b7e231f
10 changed files with 77 additions and 62 deletions

View File

@ -81,8 +81,6 @@ export default [
'jsx-a11y/click-events-have-key-events': 'off',
'jsx-a11y/no-static-element-interactions': 'off',
'jsx-a11y/no-noninteractive-element-interactions': 'off',
'@stylistic/indent': 'off',
'@stylistic/jsx-one-expression-per-line': 'off',
},
},
{
@ -96,6 +94,7 @@ export default [
'**/*.test.tsx',
'**/__tests__/**',
'**/tests/**',
'__mocks__/**',
],
rules: {
'import/no-extraneous-dependencies': [

View File

@ -35,7 +35,7 @@
"@types/jest": "30.0.0",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"@typescript-eslint/parser": "8.39.0",
"@typescript-eslint/parser": "8.42.0",
"eslint": "9.34.0",
"eslint-config-ksv741": "0.2.0",
"identity-obj-proxy": "3.0.0",
@ -45,5 +45,14 @@
"openapi-typescript": "7.9.1",
"ts-node": "10.9.2",
"typescript": "5.9.2"
},
"overrides": {
"@stylistic/eslint-plugin": "5.3.1",
"typescript-eslint": "8.42.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}

View File

@ -1,6 +1,9 @@
import type { ExpenseList } from '@/entity/expenses/list';
import type {
FC, FormEventHandler, FormHTMLAttributes, RefObject,
FC,
FormEventHandler,
FormHTMLAttributes,
RefObject,
} from 'react';
type BaseFormProps = Omit<FormHTMLAttributes<HTMLFormElement>, 'onSubmit'>;
@ -34,7 +37,9 @@ const DeleteExpensesListForm: FC<DeleteExpenseListFormProps> = (props) => {
Вы действительно хотите удалить список расходов
{' '}
<b>{`"${list.title}"`}</b>
<b>
{`"${list.title}"`}
</b>
{' '}
?
@ -47,7 +52,9 @@ const DeleteExpensesListForm: FC<DeleteExpenseListFormProps> = (props) => {
В нем содержится
{' '}
<b>{list.items?.length}</b>
<b>
{list.items?.length}
</b>
{' '}
расходов

View File

@ -3,8 +3,8 @@ import { useLogout } from '@/entity/account';
const LogoutButton = () => {
const { mutate: logout, isPending } = useLogout();
const onClickHandler = async () => {
await logout();
const onClickHandler = () => {
logout();
};
return (