admin管理员组

文章数量:1341401

I have uninstalled eslint from my system by running two mands i.e

npm uninstall eslint --save-dev (to remove it from the package .json)

npm uninstall eslint

But after doing all this when I run this mand npm eslint -v, it shows me the version of the eslint.

How do I pletely remove eslint from my system?

I have uninstalled eslint from my system by running two mands i.e

npm uninstall eslint --save-dev (to remove it from the package .json)

npm uninstall eslint

But after doing all this when I run this mand npm eslint -v, it shows me the version of the eslint.

How do I pletely remove eslint from my system?

Share edited Jun 7, 2023 at 9:57 Abdulrahman Hasanato 5794 silver badges15 bronze badges asked Jul 24, 2021 at 7:17 Ashrit johriAshrit johri 431 gold badge1 silver badge3 bronze badges 1
  • Maybe it is installed globally? Can you try npm uninstall eslint -g ? – Valentin Vignal Commented Jul 24, 2021 at 7:33
Add a ment  | 

2 Answers 2

Reset to default 6

Try to check globally installed packages using the below mand:

npm list -g

And if you find eslint in the list then try to use this mand:

npm uninstall -g eslint --save

checkout this link if this didn't work: https://www.codegrepper./code-examples/javascript/how+to+uninstall+eslint

Maybe you installed 'eslint' globally as well

try npm uninstall -g eslint

by adding the -g you can address the global setup, and uninstall not from the working directory but also from the whole system. also, consider returning to the project directory you originally installed 'eslint' from and uninstalling it for your project folder. with just npm uninstall eslint --save-dev and npm uninstall eslint

本文标签: javascriptEslint uninstallStack Overflow