eslint-plugin-destructuring

2.2.1 • Public • Published

ESLint-Plugin-Destructuring

Maintenance Status NPM version Build Status

Destructuring-specific linting rules for ESLint.

Installation

Install ESLint either locally or globally.

$ npm install eslint

If you installed ESLint globally, you have to install the plugin globally too. Otherwise, install it locally.

$ npm install eslint-plugin-destructuring

Configuration

Add a plugins section and specify eslint-plugin-destructuring as a plugin.

Then, enable all of the rules that you would like to use.

Recommended configuration

This plugin exports a recommended configuration that enforces all the rules. You can configure the plugin as follows:

{
  "plugins": ["destructuring"],
  "extends": ["plugin:destructuring/recommended"]
}

List of provided rules

Rules are divided into categories for your convenience. All rules are off by default, unless you use one of the plugin's configurations which turn all relevant rules on.

Stylistic Issues

These rules are purely matters of style and are quite subjective.

  • no-rename: Forbid rename syntax when object destructuring.
  • in-params: Configure destructuring within parameters.
  • in-methods-params: Forbid destructuring within method parameters.

Contributing

Contributions are always welcome!.

License

eslint-plugin-destructuring is licensed under the MIT License.

Package Sidebar

Install

npm i eslint-plugin-destructuring

Weekly Downloads

2,981

Version

2.2.1

License

MIT

Unpacked Size

7.45 kB

Total Files

7

Last publish

Collaborators

  • lukeapage