
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
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
The npm package esformatter-align receives a total of 35 weekly downloads. As such, esformatter-align popularity was classified as not popular.
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.