File tree Expand file tree Collapse file tree 4 files changed +15
-15
lines changed
Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 1- import js from '@eslint/js'
2- import globals from 'globals'
3- import reactHooks from 'eslint-plugin-react-hooks'
4- import reactRefresh from 'eslint-plugin-react-refresh'
1+ import js from '@eslint/js' ;
2+ import globals from 'globals' ;
3+ import reactHooks from 'eslint-plugin-react-hooks' ;
4+ import reactRefresh from 'eslint-plugin-react-refresh' ;
55
66export default [
77 { ignores : [ 'dist' ] } ,
@@ -30,4 +30,4 @@ export default [
3030 ] ,
3131 } ,
3232 } ,
33- ]
33+ ] ;
Original file line number Diff line number Diff line change 3434 "vitest" : " ^3.1.3"
3535 },
3636 "lint-staged" : {
37- "src/**/*.{jsx,js,css}" :" npm run lint:fix"
37+ "src/**/*.{jsx,js,css}" : " npm run lint:fix"
3838 }
3939}
Original file line number Diff line number Diff line change 1- import { StrictMode } from 'react'
2- import { createRoot } from 'react-dom/client'
3- import './index.css'
4- import App from './App.jsx'
1+ import { StrictMode } from 'react' ;
2+ import { createRoot } from 'react-dom/client' ;
3+ import './index.css' ;
4+ import App from './App.jsx' ;
55
66createRoot ( document . getElementById ( 'root' ) ) . render (
77 < StrictMode >
88 < App />
9- </ StrictMode > ,
10- )
9+ </ StrictMode >
10+ ) ;
Original file line number Diff line number Diff line change 1- import { defineConfig } from 'vite'
2- import react from '@vitejs/plugin-react'
1+ import { defineConfig } from 'vite' ;
2+ import react from '@vitejs/plugin-react' ;
33
44export default defineConfig ( {
55 plugins : [ react ( ) ] ,
6- } )
6+ } ) ;
You can’t perform that action at this time.
0 commit comments