Doesn't support globally installed eslint plugins
See original GitHub issueI have a plugin specified in my .eslintrc
:
plugins:
- "babel"
and installed this plugin globally
npm install -g eslint-plugin-babel
but Code doesn’t seem to be able to use it:
Issue Analytics
- State:
- Created 8 years ago
- Reactions:3
- Comments:6 (4 by maintainers)
Top Results From Across the Web
How to install ESlint globally? - Stack Overflow
To install eslint globally: npm install -g eslint. To install eslint in your project folder: npm install eslint --save-dev · Add in package.json ......
Read more >eslint/eslint - Gitter
A globally-installed ESLint cannot find a locally-installed plugin. 2. If ESLint is installed locally, then it's likely that the plugin isn't installed ......
Read more >Configuration Files - ESLint - Pluggable JavaScript Linter
A pluggable and configurable linter tool for identifying and reporting on patterns in JavaScript. Maintain your code quality with ease.
Read more >ESLint | WebStorm Documentation - JetBrains
Install ESLint · In the embedded Terminal ( Alt+F12 ) , type one of the following commands: npm install --g eslint for...
Read more >eslint-plugin-jsx-a11y - npm
Note: If you installed ESLint globally (using the -g flag in npm, or the global prefix in yarn) then you must also install...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Since the vscode-eslint extension is using the available eslint api there is nothing I can do to make this work.
Interestingly using a local installed eslint with a global install plugin on a command line isn’t working either.