Security News
ESLint is Now Language-Agnostic: Linting JSON, Markdown, and Beyond
ESLint has added JSON and Markdown linting support with new officially-supported plugins, expanding its versatility beyond JavaScript.
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 145 weekly downloads. As such, eslint-config-volue popularity was classified as not popular.
We found that eslint-config-volue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
ESLint has added JSON and Markdown linting support with new officially-supported plugins, expanding its versatility beyond JavaScript.
Security News
Members Hub is conducting large-scale campaigns to artificially boost Discord server metrics, undermining community trust and platform integrity.
Security News
NIST has failed to meet its self-imposed deadline of clearing the NVD's backlog by the end of the fiscal year. Meanwhile, CVE's awaiting analysis have increased by 33% since June.