
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@inrupt/eslint-config-lib
Advanced tools
Shared eslint config for Typescript Libraries used at @inrupt
Eslint and prettier configs
npm install --save-dev @inrupt/eslint-config-lib @rushstack/eslint-patch
Create a .eslintrc.js
in the the root of your project with the following contents:
require("@rushstack/eslint-patch/modern-module-resolution");
module.exports = {
extends: ["@inrupt/eslint-config-lib"],
parserOptions: {
project: "./tsconfig.eslint.json",
},
rules: {},
};
The file tsconfig.eslint.json
is your typescript configuration with the e2e tests, unit tests and examples included, e.g.,
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts", "e2e/**/*.ts", "examples/**/*.ts", "*.md"],
"exclude": ["**/node_modules", "**/dist/**"]
}
extends: ['@inrupt/eslint-config-lib']
to your .eslintrc.js
file..eslintrc.js
file:require("@rushstack/eslint-patch/modern-module-resolution");
Exhaustive documentation forthcoming. For now, the general principles are:
FAQs
Shared eslint config for Typescript Libraries used at @inrupt
The npm package @inrupt/eslint-config-lib receives a total of 1,063 weekly downloads. As such, @inrupt/eslint-config-lib popularity was classified as popular.
We found that @inrupt/eslint-config-lib demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.