Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 511 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 511 Bytes

Vite Plugin Biome

This is a Vite plugin for integrating the Biome linter into your Vite project.

Features

  • Integrates Biome linter into the Vite build process.
  • Prints Biome linter output to the console.

Installation

npm install vite-plugin-biome

Usage

Add the plugin to your vite.config.js

import biomePlugin from 'vite-plugin-biome';

export default {
  plugins: [biomePlugin()],
};

Check it out on GitHub