Combines Airbnb's ESLint configuration with Prettier formatting to provide a consistent code style without conflicts. Version 1.1.0 is the latest stable release, published as a simple one-off package. It bundles eslint-config-prettier to disable Airbnb rules that would conflict with Prettier. Note that this package has not been updated since 2018 and relies on deprecated ESLint 4.x, making it unsuitable for modern ESLint 5+ or React 17 projects. Alternatives include using eslint-config-airbnb directly with eslint-config-prettier, or adopting standardized configs.
npm install eslint-config-airbnb-prettierVerified import paths — ran on the pinned version, not inferred.
Shows how to install and configure eslint-config-airbnb-prettier in an .eslintrc.json file, enabling Airbnb rules with Prettier conflict resolution.
Use eslint-config-airbnb with eslint-config-prettier separately to support modern ESLint versions.
Downgrade to ESLint 4.x or switch to alternative config setup.
Set extends to 'airbnb-prettier'.
Ensure the package is installed: npm install --save-dev eslint-config-airbnb-prettier
Install eslint-config-airbnb manually: npm install --save-dev eslint-config-airbnb