Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

vite react + eslint

npm create vite@latest my-react-app -- --template react
cd my-react-app
npm install

npm install --save-dev eslint-config-react-app eslint@^8.0.0

# Create a file named .eslintrc.json 
touch .eslintrc.json
# ...and add the following:
{ "extends": "react-app" }

npm run dev
 
PREVIOUS NEXT
Tagged: #vite #react #eslint
ADD COMMENT
Topic
Name
2+3 =