Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@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.
The npm package @gathermade/eslint-config receives a total of 0 weekly downloads. As such, @gathermade/eslint-config popularity was classified as not popular.
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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.