
Security News
npm Tooling Bug Incorrectly Marks One-Character Packages as Security Holders
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.
@putout/cli-ruler
Advanced tools
Ruler toggler for .putout.json.
npm i @putout/cli-ruler
To create new file .putout.json and disable all rules defined by places use:
import {readFile, writeFile} from 'node:fs/promises';
import {rule} from '@putout/cli-ruler';
const places = [{
rule: 'remove-unused-variables',
message: '"a" is defined but never used',
position: {
line: 3,
column: 6,
},
}];
const options = {
disableAll: true,
readFile,
writeFile,
};
await ruler(places, options);
It will produce .putout.json:
{
"rules": {
"remove-unused-variables": "off"
}
}
Same with enableAll
To enable one rule with a name remove-unused-variables use:
import {readFile, writeFile} from 'node:fs/promises';
import ruler from '@putout/cli-ruler';
const places = [];
const options = {
enable: 'remove-unused-variables',
readFile,
writeFile,
};
await ruler(places, options);
It will produce .putout.json:
{
"rules": {
"remove-unused-variables": "on"
}
}
Same with disable.
MIT
FAQs
toggle rules in .putout.json
The npm package @putout/cli-ruler receives a total of 13,409 weekly downloads. As such, @putout/cli-ruler popularity was classified as popular.
We found that @putout/cli-ruler 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
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.

Research
/Security News
Newer packages in this compromise use native extensions and .pth loaders to execute JavaScript stealers in developer environments.

Research
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.