I\'m trying to install ESLint with npm by going:
npm install -g eslint
However I get the following error:
Deans-Air:~ deangibso
Running the following command solved the issue for me while installing my packages.json :
sudo npm install --unsafe-perm=true --allow-root
To install only the package which caused the issue:
sudo npm install -g --unsafe-perm=true --allow-root eslint