
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.
@breadstone-infrastructure/eslint-config
Advanced tools
Package Status | Source |
---|---|
libs/infrastructure/eslint-config |
Opinionated and extensible ESLint configuration for modern web development. Supports Angular, React, Lit, Vue, and more โ with first-class TypeScript integration.
Part of the monorepo breadstone-infrastructure
Package path: libs/infrastructure/eslint-config
Version: see npm
License: MIT
yarn add -D @breadstone-infrastructure/eslint-config
# or with npm:
npm install --save-dev @breadstone-infrastructure/eslint-config
Create or update your eslint.config.mjs
:
import { configs } from '@breadstone-infrastructure/eslint-config';
export default [
// base rule set (including typical js rules)
...configs.base,
// TypeScript rule set (including import path validation)
...configs.typescript,
// Angular rule set
...configs.angular,
// React rule set
...configs.react,
// Vue rule set
...configs.vue,
// Web Components & Lit element rule set
...configs.lit,
// Markdown linting
...configs.markdown,
// JSON formatting and validation
...configs.json,
// Basic HTML linting
...configs.html
];
๐ก You can combine individual configs as needed.
configs
)Name | Description |
---|---|
configs.base | Base rules for all projects |
configs.typeScript | TypeScript + import path validation |
configs.angular | Angular best practices |
configs.react | React with JSX and hooks optimizations |
configs.vue | Vue 3 (script setup supported) |
configs.lit | Web Components & Lit element rules |
configs.markdown | Linting for Markdown content |
configs.json | Formatting and validation for JSON |
configs.html | Basic linting for HTML files |
import { configs } from '@breadstone-infrastructure/eslint-config';
export default [
...configs.base,
...configs.typescript,
...configs.angular
];
.eslintrc.*
is deprecated.eslint.config.mjs
files per project or lib.yarn nx run eslint-config:publish
For maintainers only โ uses Changesets or manual publishing.
MIT ยฉ Breadstone
FAQs
Shared eslint configuration
The npm package @breadstone-infrastructure/eslint-config receives a total of 0 weekly downloads. As such, @breadstone-infrastructure/eslint-config popularity was classified as not popular.
We found that @breadstone-infrastructure/eslint-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.ย It has 1 open source maintainer 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.