Skip to content
This repository has been archived by the owner on Sep 24, 2023. It is now read-only.

Latest commit

 

History

History
47 lines (30 loc) · 675 Bytes

README.md

File metadata and controls

47 lines (30 loc) · 675 Bytes

⚠️ THIS PACKAGE IS DEPRECATED


eslint-plugin-gearonix

gearonix plugin

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-gearonix:

npm install eslint-plugin-gearonix --save-dev

Usage

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

{
    "plugins": [
        "gearonix-eslint-plugin"
    ]
}

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

{
    "rules": {
        "gearonix-eslint-plugin/rule-name": 2
    }
}