Provides Webpack's eslint rules as an extensible shared config
npm install eslint-config-webpack[![npm][npm]][npm-url]
[![test][test]][test-url]

Provides Webpacks's eslint config as an extensible shared config.
``bash`
npm i -D eslint-config-webpack
Webpack's eslint config contains all of our ESLint rules.
_In your eslint.config.js add ..._
`js
import { defineConfig } from "eslint/config";
import config from "eslint-config-webpack";
export default defineConfig([
{
extends: [config]
}
]);
``
[npm]: https://img.shields.io/npm/v/eslint-config-webpack.svg
[npm-url]: https://npmjs.com/package/eslint-config-webpack
[test]: https://github.com/webpack/eslint-config-webpack/actions/workflows/test.yml/badge.svg
[test-url]: https://github.com/webpack/eslint-config-webpack/actions/workflows/test.yml