diff --git a/eslint.config.js b/eslint.config.js index ec2b712..b7837cf 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,7 +1,7 @@ -import js from '@eslint/js' -import globals from 'globals' -import reactHooks from 'eslint-plugin-react-hooks' -import reactRefresh from 'eslint-plugin-react-refresh' +import js from '@eslint/js'; +import globals from 'globals'; +import reactHooks from 'eslint-plugin-react-hooks'; +import reactRefresh from 'eslint-plugin-react-refresh'; export default [ { ignores: ['dist'] }, @@ -30,4 +30,4 @@ export default [ ], }, }, -] +]; diff --git a/package.json b/package.json index be422d3..78a86e7 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,6 @@ "vitest": "^3.1.3" }, "lint-staged": { - "src/**/*.{jsx,js,css}":"npm run lint:fix" + "src/**/*.{jsx,js,css}": "npm run lint:fix" } } diff --git a/src/main.jsx b/src/main.jsx index b9a1a6d..d9cc93c 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -1,10 +1,10 @@ -import { StrictMode } from 'react' -import { createRoot } from 'react-dom/client' -import './index.css' -import App from './App.jsx' +import { StrictMode } from 'react'; +import { createRoot } from 'react-dom/client'; +import './index.css'; +import App from './App.jsx'; createRoot(document.getElementById('root')).render( - , -) + +); diff --git a/vite.config.js b/vite.config.js index 9ffcc67..0466183 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,6 +1,6 @@ -import { defineConfig } from 'vite' -import react from '@vitejs/plugin-react' +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; export default defineConfig({ plugins: [react()], -}) +});