
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@gitcoin/config
Advanced tools
Shared configuration files for the Gitcoin Core Design System monorepo, including ESLint, TypeScript, and Prettier configurations.
Shared configuration files for the Gitcoin Core Design System monorepo, including ESLint, TypeScript, and Prettier configurations.
This package contains centralized configuration files used across the monorepo to ensure consistent code style, linting rules, and TypeScript settings.
.
├── eslint/ # ESLint configurations
│ ├── library.js # Base config for libraries
│ ├── next.js # NextJS specific rules
│ ├── react.js # React specific rules
│ ├── react-internal.js # Internal React rules
│ └── storybook.js # Storybook specific rules
│
└── tsconfig/ # TypeScript configurations
├── base.json # Base TS config
├── nextjs.json # NextJS specific config
├── react.json # React specific config
├── storybook.json # Storybook specific config
└── ui.json # UI package specific config
// .eslintrc.js
module.exports = {
extends: ['@gitcoin/config/eslint-react'],
// or any other config:
// '@gitcoin/config/eslint-library'
// '@gitcoin/config/eslint-next'
// '@gitcoin/config/eslint-storybook'
}
{
"extends": "@gitcoin/config/tsconfig-react.json"
// or any other config:
// "@gitcoin/config/tsconfig-nextjs.json"
// "@gitcoin/config/tsconfig-storybook.json"
// "@gitcoin/config/tsconfig-ui.json"
}
// .prettierrc.js
module.exports = {
...require('@gitcoin/config/prettier')
}
eslint-library
: Base configuration for librarieseslint-next
: Rules for Next.js applicationseslint-react
: Rules for React applicationseslint-react-internal
: Internal React specific ruleseslint-storybook
: Rules for Storybook filestsconfig/base.json
: Base TypeScript configurationtsconfig/nextjs.json
: Next.js specific configurationtsconfig/react.json
: React specific configurationtsconfig/storybook.json
: Storybook specific configurationtsconfig/ui.json
: UI package specific configurationShared Prettier configuration to ensure consistent code formatting across all Gitcoin repositories.
AGPL-3.0 - see the LICENSE file for details.
FAQs
Shared configuration files for the Gitcoin Core Design System monorepo, including ESLint, TypeScript, and Prettier configurations.
The npm package @gitcoin/config receives a total of 0 weekly downloads. As such, @gitcoin/config popularity was classified as not popular.
We found that @gitcoin/config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.