Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
eslint-plugin-consistent-subscribe
Advanced tools
ESLint rule, checking pairing subscriptions
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-consistent-subscribe
:
$ npm install eslint-plugin-consistent-subscribe --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-consistent-subscribe
globally.
Add consistent-subscribe
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"consistent-subscribe"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"consistent-subscribe/consistent-subscribe": 2
}
}
This rule aims to...
Examples of incorrect code for this rule:
$('body').on('click', onClick);
// subscribe, without unsubscribe
Examples of correct code for this rule:
$('body').on('click', onClick);
setTimeout(() => {
$('body').off('click', onClick);
}, 1000);
This rule takes a list of objects, where each object describes a separate API subscription.
Default value is:
/* eslint-enable consistent-subscribe/consistent-subscribe: [2, {open: 'addEventListener', close: 'removeEventListener'}, {open: 'on',close: 'off'}, {open: 'subscribe',close: 'unsubscribe'}] */
open name of subscribe method, i.e. on/subscribe/addEventListener
close name of unsubscribe method, i.e. off/unsubscribe/removeEventListener
contextEquality. default true - need check, that listened object strict equal The following patterns are not warnings:
/* eslint-enable consistent-subscribe/consistent-subscribe: [2, {open: 'on',close: 'off', contextEquality: false}] */
$('body').on('click', onClick);
$(document.body).off('click', onClick);
openArgumentsEquality/closeArgumentsEquality. default true - arguments should strict equal
If need check not all arguments, this is array of indexed arguments for check\
The following patterns are considered warnings:
/* eslint-enable consistent-subscribe/consistent-subscribe: [2, {open: 'on',close: 'off', openArgumentsEquality: true, closeArgumentsEquality: true}] */
$('body').on('click', onClick);
$('body').off('click');//missing handler argument
The following patterns are not warnings:
/* eslint-enable consistent-subscribe/consistent-subscribe: [2, {open: 'on',close: 'off', openArgumentsEquality: [0], closeArgumentsEquality: [0]}] */
$('body').on('click', onClick);
$('body').off('click');//missing handler argument, but it's OK, because checked only first argument
© 2016 Viktor Gvozdev gvozdev.viktor@gmail.com and contributors.
Released under the MIT license.
FAQs
ESLint rule, checking pairing subscriptions
The npm package eslint-plugin-consistent-subscribe receives a total of 3 weekly downloads. As such, eslint-plugin-consistent-subscribe popularity was classified as not popular.
We found that eslint-plugin-consistent-subscribe 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.