A pluggable ESLint configuration pack for ES.Next (ES2015+), Node.js, and React Native. Version 4.1.0 supports ESLint 6.x. Provides pre-defined configs (esnext, node, react-native) with optional style-guide variants. Unlike many single-purpose configs, this package combines multiple environments and can be extended/overridden per rule. Allows granular installation of individual configs (eslint-config-esnext, eslint-config-node, eslint-config-react-native). Last release appears stale; check for newer versions or consider modern alternatives like eslint-config-airbnb or eslint-config-standard.
npm install eslint-config-recommendedVerified import paths — ran on the pinned version, not inferred.
Shows how to set up ESLint with the recommended/esnext config and override a rule.
Consider migrating to a actively maintained config like eslint-config-airbnb or eslint-config-standard.
Use extends: ['recommended/esnext'] instead of extends: ['esnext'].
Override specific rules in your .eslintrc to disable or adjust.
Check rule options in the official ESLint documentation and adjust accordingly.
Run npm install --save-dev eslint-config-recommended.