javascript - Eslint uninstall - Stack Overflow

I have uninstalled eslint from my system by running two mands i.enpm uninstall eslint --save-dev (to r

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

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743674443a4488321.html

相关推荐

  • javascript - Eslint uninstall - Stack Overflow

    I have uninstalled eslint from my system by running two mands i.enpm uninstall eslint --save-dev (to r

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信