1.4.5 • Published 1 year ago

@nodeart/eslint-plugin v1.4.5

Weekly downloads
8
License
ISC
Repository
-
Last release
1 year ago

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"
    ]
}