@ghadyani-eslint/eslint-plugin-arrow-body-parens

2.2.9 • Public • Published

Originally copied straight from https://github.com/BerkeleyTrue/eslint-plugin-arrow-body-parens and modified.

@ghadyani-eslint/eslint-plugin-arrow-body-parens

Rule to require parenthesis in arrow function body expressions.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install @ghadyani-eslint/eslint-plugin-arrow-body-parens:

$ npm install @ghadyani-eslint/eslint-plugin-arrow-body-parens --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/arrow-body-parens to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": [
    "@ghadyani-eslint/arrow-body-parens"
  ]
}

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

{
  "rules": {
    "@ghadyani-eslint/arrow-body-parens/parens": [ "error" ]
  }
}

Supported Rules

  • parens - ensure arrow expression bodies are wrapped in parenthesis and that the opening parenthesis starts on the same line as the arrow.

Package Sidebar

Install

npm i @ghadyani-eslint/eslint-plugin-arrow-body-parens

Weekly Downloads

1

Version

2.2.9

License

ISC

Unpacked Size

23 kB

Total Files

11

Last publish

Collaborators

  • sawtaytoes