0.0.5 • Published 9 years ago
eslint-plugin-prettier-rules v0.0.5
eslint-plugin-prettier-rules
An eslint rule configuration which matches the output from prettier
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-prettier-rules:
$ npm install eslint-plugin-prettier-rules --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-prettier-rules globally.
Usage
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"
]
}