Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
eslint-config-biome
Advanced tools
Disables all the ESLint rules that have a recommended and equivalent Biome rule
Disables all the ESLint rules that have an equivalent and recommended Biome rule, so you can use both for better performance.
Early stage lib, will be improved soon with further possibilities such as considering non-recommended Biome rules.
npm install -D eslint-plugin-biome
.eslintrc.*
: Add "biome"
as the last item in the "extends"
field.{
"extends": [
"other-configs",
"biome"
]
}
eslint.config.js
: Import eslint-config-biome
and have it as the last item in the configuration arrayimport eslintConfigBiome from "eslint-config-biome";
export default [
otherConfigs,
eslintConfigBiome,
];
You should use it together with eslint-config-prettier so formatting rules are also disabled as Biome has almost a 100% compatibility with prettier! You certainly no longer require prettier if you are using Biome.
In VSCode, to apply Biome and ESLint on save, you should have these in your settings.json:
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports.biome": "explicit",
"quickfix.biome": "explicit"
},
"editor.defaultFormatter": "biomejs.biome"
1.0.0
FAQs
Disables ESLint rules that have a recommended and equivalent Biome rule
The npm package eslint-config-biome receives a total of 11,261 weekly downloads. As such, eslint-config-biome popularity was classified as popular.
We found that eslint-config-biome demonstrated a healthy version release cadence and project activity because the last version was released less than 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.