
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
@gathermade/eslint-config
Advanced tools
@gathermade/eslint-config
GatherMade's shared ESLint configurations.
Install via your package manager of choice:
npm install -D @gathermade/eslint-config
yarn add -D @gathermade/eslint-config
You'll also need to install eslint
and prettier
, which are peer dependencies.
You will also need to install typescript
if you're using those configurations; these are also represented as peer dependencies.
@gathermade/eslint-config/recommended
: A base configuration. You probably want this rule set enabled at the root of your configuration.@gathermade/eslint-config/recommended-typescript
: A base configuration for TypeScript files.@gathermade/eslint-config/jest
: A configuration for Jest tests.@gathermade/eslint-config/node/commonjs/typescript
: A configuration for TypeScript files run via a CommonJS Node runtime.@gathermade/eslint-config/node/commonjs
: A configuration for files run via a CommonJS Node runtime.The most effective way to use this configuration is in conjunction with overrides. For example:
// .eslintrc.js
module.exports = {
root: true,
extends: ["@gathermade/eslint-config/recommended"],
overrides: [
// TypeScript files
{
files: ["src/**/*.ts"],
parserOptions: {
tsconfigRootDir: __dirname,
project: "./tsconfig.json",
},
extends: ["@gathermade/eslint-config/recommended-typescript"],
},
// Tests
{
files: ["src/**/*.test.{j,t}s"],
extends: ["@gathermade/eslint-config/jest"],
},
],
};
FAQs
GatherMade's shared ESLint configurations.
We found that @gathermade/eslint-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.