Skip to content

lucasefe/eslint-plugin-align-assignments

Repository files navigation

eslint-plugin-align-assignments

ESLint rule to enforce alignment of assignment declarations in a group.

Build Status

Installation

You'll first need to install ESLint:

$ npm install eslint --save-dev

Next, install eslint-plugin-align-assignments:

$ npm install eslint-plugin-align-assignments --save-dev

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

Usage

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

{
  "plugins": [
    "align-assignments"
  ]
}

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

{
  "rules": {
    "align-assignments/align-assignments": [2, { "requiresOnly": false } ]
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published