fix slow linter

This commit is contained in:
talksik
2022-05-30 06:04:41 -05:00
parent be8b560851
commit 68afcaff25
3 changed files with 17 additions and 8 deletions
+2 -2
View File
@@ -16,9 +16,9 @@
"plugin:react-hooks/recommended", "plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended" "plugin:jsx-a11y/recommended"
], ],
"parser": "@typescript-eslint/parser",
"rules": { "rules": {
"react-hooks/rules-of-hooks": "error", "react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn" "react-hooks/exhaustive-deps": "warn"
}, }
"parser": "@typescript-eslint/parser"
} }
@@ -1,4 +1,4 @@
import React from 'react'; import React, { useCallback } from 'react';
import { Container, Dialog, IconButton } from '@mui/material'; import { Container, Dialog, IconButton } from '@mui/material';
import { FiX } from 'react-icons/fi'; import { FiX } from 'react-icons/fi';
@@ -9,6 +9,15 @@ export default function NewConversationDialog({
open: boolean; open: boolean;
handleClose: () => void; handleClose: () => void;
}) { }) {
const handleSubmit = useCallback(() => {
try {
} catch (error) {
//
}
handleClose();
}, []);
return ( return (
<Dialog fullScreen open={open} onClose={handleClose}> <Dialog fullScreen open={open} onClose={handleClose}>
<Container <Container
@@ -24,7 +33,7 @@ export default function NewConversationDialog({
position: 'relative', position: 'relative',
}} }}
> >
<IconButton sx={{ position: 'absolute', top: 10, right: 10 }}> <IconButton sx={{ position: 'absolute', top: 10, right: 10 }} onClick={handleClose}>
<FiX /> <FiX />
</IconButton> </IconButton>
</Container> </Container>
+3 -3
View File
@@ -1,11 +1,10 @@
{ {
"compilerOptions": { "compilerOptions": {
"jsx": "react",
"allowJs": true, "allowJs": true,
"module": "commonjs", "module": "commonjs",
"skipLibCheck": true, "skipLibCheck": true,
"esModuleInterop": true, "esModuleInterop": true,
"noImplicitAny": true, "noImplicitAny": false,
"sourceMap": true, "sourceMap": true,
"baseUrl": ".", "baseUrl": ".",
"outDir": "dist", "outDir": "dist",
@@ -13,7 +12,8 @@
"resolveJsonModule": true, "resolveJsonModule": true,
"paths": { "paths": {
"*": ["node_modules/*"] "*": ["node_modules/*"]
} },
"jsx": "react-jsx"
}, },
"include": ["src/**/*"] "include": ["src/**/*"]
} }