
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@affinidi/eslint-config
Advanced tools
Affinidi's Base ESLint Configuration
npm install --save-dev @affinidi/eslint-config
// .eslintrc.js
module.exports = {
extends: ['@affinidi/eslint-config'],
parserOptions: {
project: './tsconfig.eslint.json',
},
}
It is reccommended that you have a separate tsconfig.eslint.json file that extends from your existing tsconfig.json file. This file will add .eslintrc.js to the "includes" property.
{
"extends": "./tsconfig.json",
"include": ["...", ".eslintrc.js"]
}
VS Code's ESLint extension requires an additional setting to properly detect ESLint versions/installs/root paths. In a typical mono repo you can do the following:
"eslint.workingDirectories": [
{
"pattern": "./packages/*"
}
]
For more details check out the extention's docs.
FAQs
Affinidi's Base ESLint Configuration
We found that @affinidi/eslint-config 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 discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.