ESLint rule to enforce alignment of assignment declarations in a group.
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.
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 } ]
}
}