eslint-config-learnx
v0.1.5
Published
ESLint configuration used by WWL React apps
Downloads
4
Readme
eslint-config-learnx
This package includes the shareable ESLint configuration used by the WWL org, and is the recommended default for React apps.
Usage in Create React App Projects
The easiest way to use this configuration is with Create React App, which includes many of the dependencies by default.
yarn add eslint-config-learnx prettier eslint-config-prettier eslint-plugin-prettier --dev
Usage Outside of Create React App
If you want to use this ESLint configuration in a project not built with Create React App, you can install it with the following steps.
First, install this package, ESLint and the necessary plugins.
yarn add eslint-config-learnx eslint-config-react-app eslint-config-prettier eslint-plugin-prettier --dev
yarn add eslint-config-react-app @typescript-eslint/[email protected] @typescript-eslint/[email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] --dev
Setting up the eslint config
Finally, create a file named .eslintrc.json
with following contents in the root folder of your project:
{
"extends": "learnx"
}
That's it! You can override the settings from eslint-config-learnx
by editing the .eslintrc.json
file. Learn more about configuring ESLint on the ESLint website.
test