This is a Vite plugin for integrating the Biome linter into your Vite project.
- Integrates Biome linter into the Vite build process.
- Prints Biome linter output to the console.
npm install vite-plugin-biome
Add the plugin to your vite.config.js
import biomePlugin from 'vite-plugin-biome';
export default {
plugins: [biomePlugin()],
};