🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More →
Socket
Book a DemoSign in
Socket

@jsrepo/transform-oxfmt

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jsrepo/transform-oxfmt

A transform plugin for jsrepo to format code with oxfmt.

latest
Source
npmnpm
Version
7.0.0
Version published
Maintainers
1
Created
Source

@jsrepo/transform-oxfmt

npm version npm downloads

A transform plugin for formatting registry items with oxfmt 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-oxfmt

Manual Configuration

Install the transform plugin:

pnpm install @jsrepo/transform-oxfmt -D

Add the transform to your config:

import { defineConfig } from "jsrepo";
import oxfmt from "@jsrepo/transform-oxfmt";

export default defineConfig({
	transforms: [oxfmt()],
});

Options

The transform accepts oxfmt's FormatOptions to customize formatting behavior:

import { defineConfig } from "jsrepo";
import oxfmt from "@jsrepo/transform-oxfmt";

export default defineConfig({
	transforms: [oxfmt({ semi: false })],
});

Keywords

jsrepo

FAQs

Package last updated on 19 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts