
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@automattic/calypso-eslint-overrides
Advanced tools
This package contains ESlint configuration used to override default ESLint settings, grouped by runtime.
The main use case is when a package has code expected to run in a browser, and code expected to run in Node.js.
Imagine you have an .eslintrc.js
that applies some config designed to enforce/prevent some code conventions that won't work well in a browser, or that inherits some rules from a parent .eslintrc.js
module.exports = {
env: {
browser: true
},
rules: {
// Polyfill nodejs modules for the browser is expensive, disable them
'import/no-nodejs-modules': 'error'
}
}
If there is some section of the code that is meant to be run by Node.js (eg: a ./bin/
directory with some scripts), you can add an override like:
const { nodeConfig } = require('@automattic/calypso-eslint-overrides/node')
module.exports = {
env: {
browser: true
},
rules: {
// Polyfill nodejs modules for the browser is expensive, disable them
'import/no-nodejs-modules': 'error'
},
overrides: [
{
files: "./bin/**.*"
...nodeConfig
}
]
}
FAQs
Shared Calypso eslint config
The npm package @automattic/calypso-eslint-overrides receives a total of 1 weekly downloads. As such, @automattic/calypso-eslint-overrides popularity was classified as not popular.
We found that @automattic/calypso-eslint-overrides demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 26 open source maintainers 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.