2.2.10 • Published 2 years ago

@ghadyani-eslint/eslint-plugin-eslint-overrides v2.2.10

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

Originally copied straight from https://github.com/eslint/eslint and modified.

@ghadyani-eslint/eslint-plugin-eslint-overrides

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-eslint-overrides --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/eslint-overrides to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

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

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

{
  "rules": {
    "@ghadyani-eslint/eslint-overrides/indent": [ "error" ]
    "@ghadyani-eslint/eslint-overrides/multiline-ternary": [ "error" ]
    "@ghadyani-eslint/eslint-overrides/newline-per-chained-call": [ "error" ]
  }
}

Supported Rules