eslint not identifying prettier issues in jsx files

Advertisements Following a tutorial on youtube, I have integrated eslint and prettier to my reactjs project. I have then defined a lint command in my package.json file. .eslintrc.json { "env": { "browser": true, "es2021": true, "jest": true }, "extends": [ "react-app", "react-app/jest", "airbnb", "plugin:prettier/recommended" ], "overrides": [], "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" }, "plugins":… Read More eslint not identifying prettier issues in jsx files

How to prevent npm run lint from fixing errors automatically?

Advertisements I created a Vue3 app using the Vue CLI with a Prettier/Eslint setup. When modifying the main.ts file to import { createApp } from "vue"; import App from "./App.vue"; import router from "./router"; createApp(App) .use(router).mount("#app"); and run npm run serve I get the following warning 6:15 warning Delete ⏎ prettier/prettier as expected. Running npm… Read More How to prevent npm run lint from fixing errors automatically?