ESLint statically analyzes your code to quickly find problems. It is built into most text editors and you can run ESLint as part of your continuous integration pipeline.
— ESLint
This Dev Container Feature installs the eslint CLI globally using Node.js and
npm to run npm install -g eslint.
You can specify a specific ESLint version like this:
// devcontainer.json
"features": {
"ghcr.io/devcontainers-community/features/eslint": {
"version": "8.0.0"
}
}