Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
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
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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.