Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
eslint-plugin-sort-destructure-keys
Advanced tools
The eslint-plugin-sort-destructure-keys package is an ESLint plugin that enforces consistent sorting of keys in object destructuring assignments. This helps maintain a clean and readable codebase by ensuring that destructured keys are always in a specified order.
Sort keys in object destructuring
This feature enforces that keys in object destructuring assignments are sorted alphabetically. If the keys are not in the correct order, ESLint will throw an error.
/* eslint sort-destructure-keys/sort-destructure-keys: 'error' */
const { b, a, c } = obj; // This will cause an ESLint error
const { a, b, c } = obj; // This is the correct order
Custom sorting order
This feature allows you to define a custom order for the keys in object destructuring assignments. If the keys are not in the specified custom order, ESLint will throw an error.
/* eslint sort-destructure-keys/sort-destructure-keys: ['error', { customOrder: ['c', 'a', 'b'] }] */
const { b, a, c } = obj; // This will cause an ESLint error
const { c, a, b } = obj; // This is the correct order
The eslint-plugin-sort-keys package enforces sorted keys in object literals. While it focuses on object literals rather than destructuring assignments, it serves a similar purpose of maintaining a consistent key order in your codebase.
The eslint-plugin-import-order package enforces a specific order for import statements. Although it deals with import statements rather than destructuring keys, it shares the goal of maintaining a consistent and readable code structure.
require object destructure key to be sorted
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-sort-destructure-keys
:
$ npm install eslint-plugin-sort-destructure-keys --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-sort-destructure-keys
globally.
Add sort-destructure-keys
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["sort-destructure-keys"]
}
Then configure the rule under the rules section.
{
"rules": {
"sort-destructure-keys/sort-destructure-keys": 2
}
}
{
"sort-destructure-keys/sort-destructure-keys": [2, { "caseSensitive": false }]
}
caseSensitive
When true
the rule will enforce properties to be in case-sensitive order. Default is true
.
Example of incorrect code for the {"caseSensitive": false}
option:
let { B, a, c } = obj;
Example of correct code for the {"caseSensitive": false}
option:
let { a, B, c } = obj;
Example of incorrect code for the {"caseSensitive": true}
option:
let { a, B, c } = obj;
Example of correct code for the {"caseSensitive": true}
option:
let { B, a, c } = obj;
2.0.0
1.6.0
1.5.0
1.4.0
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
--fix
eslint cli flag1.2.0
^5.0.0
1.1.0
FAQs
require object destructure key to be sorted
The npm package eslint-plugin-sort-destructure-keys receives a total of 159,514 weekly downloads. As such, eslint-plugin-sort-destructure-keys popularity was classified as popular.
We found that eslint-plugin-sort-destructure-keys demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.