Support for ESLint v9 was added in version v2!
ESLint config with support for the following:
- React
- React Hooks
- ES6 Imports
- JSDoc
- Optional: TypeScript
Install the NPM package npm install -D @wunderwerk/eslint-config
and then
reference the config in your .eslintrc.js
:
{
"extends": [
"@wunderwerk/eslint-config"
]
}
The module provides config variants for JavaScript and one for TypeScript. The default config shown in the example above is for JavaScript.
To use the TypeScript config, extend the config as follows:
{
"parser": "@typescript-eslint/parser",
"extends": [
"@wunderwerk/eslint-config/typescript"
]
}
You can add react specific rules by extending the react
config:
{
"extends": [
"@wunderwerk/eslint-config/react"
]
}
This config references other eslint plugins. These plugins must be installed in your project and are defined as peer dependencies in this package:
npm install -D \
eslint \
eslint-plugin-import \
eslint-plugin-jsdoc \
eslint-plugin-react \
eslint-plugin-react-hooks \
@typescript-eslint/eslint-plugin