
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.
@eruptionjs/config
Advanced tools
Opinionated configuration for projects using Prettier, ESLint, TypeScript and React.
npm install --save-dev @eruptionjs/config
While you have full control over the configuration, you can use the settings in this project as a starting point for your own. In many cases, the default configurations may be all you need.
Install prettier
on your project, and add the eruptionjs configuration on your package.json
:
npm install --save-dev prettier
package.json
{
// ... Your existing configuration
"prettier": "@eruptionjs/config/prettier"
}
The Eruption TypeScript configuration extends the base TypeScript configuration with additional rules and settings.
To use the configuration, add the following to your tsconfig.json
(create it if it doesn't exist):
{
"extends": "@eruptionjs/config/typescript",
"include": ["@eruptionjs/reset.d.ts", "**/*.ts", "**/*.tsx"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
}
}
The Eruption ESLint configuration extends the base ESLint configuration with additional rules and settings.
To use the configuration, install eslint
on your project, and add the following to your eslint.config.js
file (create it if it doesn't exist):
npm install --save-dev eslint
eslint.config.js
import { config as defaultConfig } from '@eruptionjs/config/eslint'
/** @type {import("eslint").Linter.Config} */
export default [...defaultConfig]
Install biome
on your project, and add the eruptionjs configuration on your biome.json
file:
npm install --save-dev @biomejs/biome
biome.json
{
"extends": "@eruptionjs/config/biome"
}
MIT @ EruptionJS and its contributors.
FAQs
Opinionated configuration for EruptionJS projects
The npm package @eruptionjs/config receives a total of 45 weekly downloads. As such, @eruptionjs/config popularity was classified as not popular.
We found that @eruptionjs/config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.