0.0.2 • Published 4 years ago

eslint-plugin-okay v0.0.2

Weekly downloads
212
License
ISC
Repository
-
Last release
4 years ago

eslint-plugin-okay

A set of eslint rules for fast frontend development

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-okay:

$ npm install eslint-plugin-okay --save-dev

Usage

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

{
    "plugins": [
        "okay"
    ]
}

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

{
    "rules": {
        "okay/rule-name": 2
    }
}

Supported Rules

  • Fill in provided rules here