- Biome for code formatting and linting;
Install dependencies:
npm i -D @biomejs/biome @forgedev-br/biome-config
Configure your project:
npx @biomejs/biome init
Add a script to package.json:
"scripts": {
"lint": "npx @biomejs/biome check src"
}
Extend the configuration within biome.json
file:
{
"extends": ["@forgedev-br/biome-config/biome"]
}