@nodeart/eslint-plugin
v1.4.5
Published
ESLint plugin from NodeArt
Downloads
33
Readme
eslint-plugin-nodeart
ESLint plugin from NodeArt
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install @nodeart/eslint-plugin
:
$ npm install @nodeart/eslint-plugin --save-dev
Usage
Add nodeart
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"@nodeart"
]
}
Then add a specific config to the extends
section:
{
"extends": [
"plugin:@nodeart/react"
]
}