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
2 Answers
Reset to default 6Try 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
版权声明:本文标题:javascript - Eslint uninstall - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743674442a2520071.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论