@jsrepo/transform-biome
v7.0.0
Published
A transform plugin for jsrepo to format code with biome.
Readme
@jsrepo/transform-biome
A transform plugin for formatting registry items with Biome using your local biome configuration before they are added to your project.
Usage
Run the following command to install and add the transform to your config:
jsrepo config transform @jsrepo/transform-biomeManual Configuration
Install the transform plugin:
pnpm install @jsrepo/transform-biome -DAdd the transform to your config:
import { defineConfig } from "jsrepo";
import biome from "@jsrepo/transform-biome";
export default defineConfig({
transforms: [biome()],
});