
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
esformatter-align
Advanced tools
esformatter plugin for alignment.
install it:
npm install esformatter-align
and add to your esformatter config file:
{
"plugins": [
"esformatter-align"
]
}
input:
var longer = require('hello');
var small = require('hello');
var muchlonger = require('hello');
output:
var longer = require('hello');
var small = require('hello');
var muchlonger = require('hello');
input:
var x = {
a: 5,
bla: ''
};
output:
var x = {
a: 5,
bla: ''
};
input:
foo = 'bar';
fooooooo = 'baz';
output:
foo = 'bar';
fooooooo = 'baz';
input:
foo ? x : 'bar';
fooooooo ? y : 'baz';
output:
foo ? x : 'bar';
fooooooo ? y : 'baz';
input:
foo || x || 'bar';
fooooooo || yy || 'baz';
output:
foo || x || 'bar';
fooooooo || yy || 'baz';
The object spread operator and shorthand can either be aligned with the keys (default) or with the values.
input:
var y = { blu: 1 };
var z = true;
var x = {
z,
...y,
bla: 5
};
output (default: keys):
var y = {
blu: 1
};
var x = {
z,
...y,
bla: 5
};
output (option: value):
var y = {
blu: 1
};
var x = {
z,
...y,
bla: 5
};
Optionally disable alignment of specific expressions and set some other options
{
"esformatter": {
// ...
},
"indent": {
// ...
},
"align": {
"ObjectExpression": 1,
"VariableDeclaration": 1,
"AssignmentExpression": 1,
"TernaryExpression": 0,
"OrExpression": 0,
"SpreadAlignment": "key", // optional: "value"
"ShorthandAlignment": "key" // optional: "value"
},
// ...
}
Released under the MIT License.
FAQs
esformatter alignment plugin
We found that esformatter-align demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.