Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@metamask/eslint-config-jest
Advanced tools
@metamask/eslint-config-jest
MetaMask's Jest ESLint configuration.
yarn add --dev \
@metamask/eslint-config@^14.0.0 \
@metamask/eslint-config-jest@^14.0.0 \
eslint@^9.11.0 \
eslint-config-prettier@^9.1.0 \
eslint-plugin-import-x@^4.3.0 \
eslint-plugin-jsdoc@^50.2.4 \
eslint-plugin-jest@^28.8.3 \
eslint-plugin-prettier@^5.2.1 \
eslint-plugin-promise@^7.1.0 \
prettier@^3.3.3
The order in which you extend ESLint rules matters.
The @metamask/*
eslint configs should be added to the config array last,
with @metamask/eslint-config
first, and @metamask/eslint-config-*
in any
order thereafter.
import base, { createConfig } from '@metamask/eslint-config';
import jest from '@metamask/eslint-config-jest';
const config = createConfig({
{
extends: [
// Any custom shared config should be added here.
// ...
// This should be added last unless you know what you're doing.
base,
jest,
],
}
});
FAQs
Shareable MetaMask ESLint config for Jest.
The npm package @metamask/eslint-config-jest receives a total of 2,126 weekly downloads. As such, @metamask/eslint-config-jest popularity was classified as popular.
We found that @metamask/eslint-config-jest demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.