I recently removed eslint from my system using two commands:
npm uninstall eslint --save-dev
(to remove it from the package.json file)
npm uninstall eslint
However, when I check the version with npm eslint -v
, it still shows the eslint version.
Can anyone guide me on how to completely eradicate eslint from my system?