0.0.6 • Published 3 years ago

eslint-plugin-appfollow v0.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

eslint-plugin-appfollow

ESLint Plugin for Appfollow Frontend

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-appfollow:

npm install eslint-plugin-appfollow --save-dev

Usage

Add appfollow to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "appfollow"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "appfollow/structure": 2
    }
}