You are having a problem with Tooling Preview 1, but I know a similar problem with version 2. An error is reported (see thread ). The solution suggested by markvp solved my problem. Here is his message:
We also experienced this problem.
While they are trying to fix it ... try this workaround ...
Check the Web \ External folder in the VS installation folder (often C: \ Program Files (x86) \ Microsoft Visual Studio 14.0) for a file named eslint.cmd
If this does not exist, open a command prompt in this folder and type npm install eslint
If this does not fix your problem (or you already have the eslint.cmd file), add the full location of this direction in the PATH environment variable. e.g. C: \ Program Files (x86) \ Microsoft Visual Studio 14.0 \ Web \ External.
(see Google instructions as it depends on your Windows OS version).
If none of these problems fix the problem, try manually deleting the eslint subfolder in the node_modules folder and the two eslint files in the Web \ External folder. Then try the installation again using the query command with elevated privileges (works as an administrator).
Then, if you add the .eslintrc file to the root of your project, you can override the eslint rules.
{ "extends": "eslint:recommended", "parser": "babel-eslint", "env": { "browser": true }, "globals": { "angular": false }, "rules": { "quotes": [ "error", "single" ] // add rules here } }
Please note that if you expand the "eslint:recommanded" , a set of rules already set by default. More information can be found in the official documentation .