Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@duvholt/tslint-yield
Advanced tools
TSLint rule that requires a strict return type for Yield Expressions when result is used.
Lint rule that requires a strict return type for Yield Expressions when result is used for TSLint.
tslint-yield has peer dependencies on TSLint and TypeScript.
To use these lint rule with the default preset, use configuration inheritance via the extends
keyword.
Here's a sample configuration where tslint.json
lives adjacent to your node_modules
folder:
{
"extends": ["@servicetitan/tslint-yield"],
"rules": {
// turn on tslint-yield rule here
"yield": true
}
}
To lint your .ts
and .tsx
files you can simply run tslint -c tslint.json 'src/**/*.{ts,tsx}'
.
requires a strict return type for Yield Expressions when result is used in cases:
//Fail
(yield getData()).result;
//Good
((yield getData()) as ResultType).result;
//Fail
var result = yield getData();
//Good
var result = (yield getData()) as ResultType;
//Fail
var result = null;
result = yield getData();
//Good
var result = null;
result = (yield getData()) as ResultType;
//Fail
var result = { data: null };
result.data = yield getData();
//Good
var result = { data: null };
result.data = (yield getData()) as ResultType;
//Fail
(yield getData()) as any).result
//Good
((yield getData()) as ResultType).result;
const getData = () => new Promise<number>(() => {});
//Fail - string !== number
(yield getData()) as string).result
//Good
((yield getData()) as number).result;
const getData = () => new Promise<number>(() => {});
//Fail
let result = (yield number) as number)
//Good
let result = ((yield getData()) as number);
FAQs
TSLint rule that requires a strict return type for Yield Expressions when result is used.
We found that @duvholt/tslint-yield 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.