
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@evaneos/eslint-config-base
Advanced tools
This package provides Evaneos's configs for JavaScript projects.
This package provides Evaneos' configs for front projects.
.eslintrc as an extensible shared config..prettierrc as an importable fileThis setup lints and formats your JavaScript code based on Evaneos practices. Feel free to override the rules that make sense for you.
In your project folder, run:
npm i -D @evaneos/eslint-config-base
npx install-peerdeps --dev @evaneos/eslint-config-base
You will see several dependencies were installed.
Now, create (or update) a .eslintrc file with the following content:
{
"extends": [
"@evaneos/eslint-config-base"
]
}
If you need to extend the configuration with other plugins, make sure that eslint-config/prettier is the last item of the array
{
"extends": [
"@evaneos/eslint-config-base",
// ...,
"@evaneos/eslint-config-base/prettier",
]
}
Add prettier config to your package.json
{
"prettier": "@evaneos/eslint-config-base/.prettierrc.js"
}
If you want to override it, you'll have to spread the config into a .prettierrc.js file instead, eg:
module.exports = {
...require('@evaneos/eslint-config-base/.prettierrc.js'),
semi: false,
};
FAQs
This package provides Evaneos's configs for JavaScript projects.
We found that @evaneos/eslint-config-base demonstrated a not healthy version release cadence and project activity because the last version was released 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.