
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.
eslint-config-volue
Advanced tools
ESLint configuration presets for Volue projects.
npm i -D eslint eslint-config-volue
Add to your .eslintrc
{
"extends": "volue"
}
To use the Babel rule set:
npm i -D eslint eslint-config-volue @babel/eslint-parser
Add this to your .eslintrc
:
{
"extends": "volue/babel"
}
To use the TypeScript rule set:
npm i -D eslint eslint-config-volue @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-import-resolver-typescript
Add this to your .eslintrc
:
{
"extends": "volue/typescript"
}
To use the React rule set:
npm i -D eslint eslint-config-volue eslint-plugin-react eslint-plugin-react-hooks
Add this to your .eslintrc
:
{
"extends": "volue/react"
}
To use the eslint-plugin-import
rule set:
npm i -D eslint eslint-config-volue eslint-plugin-import
Add this to your .eslintrc
:
{
"extends": "volue/import"
}
To use the Jest rule set:
npm i -D eslint eslint-config-volue eslint-plugin-jest
Add this to your .eslintrc
:
{
"extends": "volue/jest"
}
To use the eslint-plugin-css-modules
rule set:
npm i -D eslint eslint-config-volue eslint-plugin-css-modules
Add this to your .eslintrc
:
{
"extends": "volue/css-modules"
}
You can use any combination of these presets.
Install the dependencies:
npm i -D eslint eslint-config-volue eslint-plugin-import @babel/eslint-parser @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-import-resolver-typescript eslint-plugin-react eslint-plugin-jest eslint-plugin-css-modules
.eslintrc
:
{
"extends": [
"volue",
"volue/babel",
"volue/import",
"volue/typescript",
"volue/react",
"volue/jest",
"volue/css-modules"
],
"rules": {
// custom tweaks
}
}
Our shareable config uses rules from external plugins such as eslint-plugin-prettier
.
This patch improves how ESLint loads plugins when working for example in a monorepo,
see: https://github.com/eslint/eslint/issues/3458
.eslintrc.js
// Patch ESLint module resolution to find shared configs' plugins
require('eslint-config-volue/patch/modern-module-resolution');
module.exports = {
extends: ['volue']
};
FAQs
Volue ESLint configs
The npm package eslint-config-volue receives a total of 133 weekly downloads. As such, eslint-config-volue popularity was classified as not popular.
We found that eslint-config-volue demonstrated a not healthy version release cadence and project activity because the last version was released 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.