An eslint rule configuration which matches the output from prettier
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-prettier-rules
:
$ npm install eslint-plugin-prettier-rules --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-prettier-rules
globally.
Add prettier-rules
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"prettier-rules"
]
}
Add prettier-rules
to the extends section of your .eslintrc
configuration file.
prettier-rules/eslint
covers the stock eslint rules and prettier-rules/react
adds jsx support if needed.
{
"extends": [
"plugin:prettier-rules/eslint",
"plugin:prettier-rules/react"
]
}