Integrates ESLint into VS Code. If you are new to ESLint check the documentation.
The extension uses the ESLint library installed in the opened workspace folder. If the folder doesn't provide one the extension looks for a global install version. If you haven't installed ESLint either locally or globally do so by running npm install eslint
in the workspace folder for a local install or npm install -g eslint
for a global install.
On new folders you might also need to create a .eslintrc
configuration file. You can do this by either using the VS Code command Create '.eslintrc.json' file
or by running the eslint command in a terminal. If you have installed eslint globally (see above) then run eslint --init
in a terminal. If you have installed eslint locally then run .\node_modules\.bin\eslint --init
under Windows and ./node_modules/.bin/eslint --init
under Linux and Mac.
This extension contributes the following variables to the settings:
eslint.enable
: enable/disable eslint. Is enabled by default.eslint.packageManager
: controls the package manager to be used to resolve the ESLint library. This has only an influence if the ESLint library is resolved globally. Valid values are"npm"
or"yarn"
.eslint.options
: options to configure how eslint is started using the ESLint CLI Engine API. Defaults to an empty option bag. An example to point to a custom.eslintrc.json
file is:
{
"eslint.options": { "configFile": "C:/mydirectory/.eslintrc.json" }
}
eslint.run
- run the linteronSave
oronType
, default isonType
.eslint.autoFixOnSave
- enables auto fix on save. Please note auto fix on save is only available if VS Code'sfiles.autoSave
is eitheroff
,onFocusChange
oronWindowChange
. It will not work withafterDelay
.eslint.nodePath
- use this setting if an installed ESLint package can't be detected, for example/myGlobalNodePackages/node_modules
.eslint.validate
- an array of language identifiers specify the files to be validated. Something like"eslint.validate": [ "javascript", "javascriptreact", "html" ]
. If the setting is missing, it defaults to["javascript", "javascriptreact"]
. You can also control which plugins should provide autofix support. To do so simply provide an object literal in the validate setting with the propertieslanguage
andautoFix
instead of a simplestring
. An example is:
"eslint.validate": [ "javascript", "javascriptreact", { "language": "html", "autoFix": true } ]
eslint.workingDirectories
- an array for working directories to be used. ESLint resolves configuration files relative to a working directory. This new settings allows users to control which working directory is used for which files. Consider the following setups:
client/
.eslintignore
.eslintrc.json
client.js
server/
.eslintignore
.eslintrc.json
server.js
Then using the setting:
"eslint.workingDirectories": [
"./client", "./server"
]
will validate files inside the server directory with the server directory as the current working directory. Same for files in the client directory. If the setting is omitted the working directory is the workspace folder.
This extension contributes the following commands to the Command palette.
Create '.eslintrc.json' file
: creates a new.eslintrc.json
file.Fix all auto-fixable problems
: applies ESLint auto-fix resolutions to all fixable problems.Disable ESLint for this Workspace
: disables ESLint extension for this workspace.Enable ESLint for this Workspace
: enable ESLint extension for this workspace.
The extension lints an individual file only. If you want to lint your entire workspace or project and want to see the warnings in the Problems panel, then you can define a VS Code task which extracts VS Code problems from the ESLint output. To do so use the following tasks.json
and tweak the args (*.js
) to your setup:
{
"version": "0.1.0",
"windows": {
"command": ".\\node_modules\\.bin\\eslint"
},
"linux": {
"command": "./node_modules/.bin/eslint"
},
"osx": {
"command": "./node_modules/.bin/eslint"
},
"isShellCommand": true,
"args": ["*.js"],
"showOutput": "silent",
"problemMatcher": "$eslint-stylish"
}
Please note that the above example assumes that ESLint is installed locally in your workspace.