2.2.9 • Published 2 years ago

@ghadyani-eslint/eslint-plugin-rules v2.2.9

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

Various rules both custom and modified from various sources.

@ghadyani-eslint/eslint-plugin-rules

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-arrow-body-parens:

$ npm install @ghadyani-eslint/eslint-plugin-rules --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-arrow-body-parens globally.

Usage

Add @ghadyani-eslint/rules to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": [
    "@ghadyani-eslint/rules"
  ]
}

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

{
  "rules": {
    "@ghadyani-eslint/rules/proper-ternary-nesting": [ "error" ],
    "@ghadyani-eslint/rules/proper-ternary-parens": [ "error" ]
  }
}

Supported Rules