A transform plugin for jsrepo to format code with oxfmt.
npm install @jsrepo/transform-oxfmt

A transform plugin for formatting registry items with oxfmt before they are added to your project.
Run the following command to install and add the transform to your config:
``sh`
jsrepo config transform @jsrepo/transform-oxfmt
Install the transform plugin:
`sh`
pnpm install @jsrepo/transform-oxfmt -D
Add the transform to your config:
`ts
import { defineConfig } from "jsrepo";
import oxfmt from "@jsrepo/transform-oxfmt";
export default defineConfig({
transforms: [oxfmt()],
});
`
The transform accepts oxfmt's FormatOptions to customize formatting behavior:
`ts
import { defineConfig } from "jsrepo";
import oxfmt from "@jsrepo/transform-oxfmt";
export default defineConfig({
transforms: [oxfmt({ semi: false })],
});
``