Prettier
prettier.io › blog › 2025 › 06 › 23 › 3.6.0
Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins! · Prettier
June 23, 2025 - This plugin includes two new parsers oxc (JavaScript syntax) and oxc-ts (TypeScript syntax), to use this plugin: ... Due to package size limitations, this plugin is not included in the prettier package, it needs to be installed separately.
GitHub
github.com › prettier › prettier › tree › main › packages › plugin-oxc
prettier/packages/plugin-oxc at main · prettier/prettier
// prettier.config.mjs import * as prettierPluginOxc from "@prettier/plugin-oxc"; /** * @see https://prettier.io/docs/configuration * @type {import("prettier").Config} */ const config = { overrides: [ { files: ["**/*.{js,mjs,cjs,jsx}"], parser: "oxc", plugins: [prettierPluginOxc], }, { files: ["**/*.{ts,mts,cts,tsx}"], parser: "oxc-ts", plugins: [prettierPluginOxc], }, ], }; export default config;
Author prettier
Videos
01:51
Prettier Not Working In Visual Studio Code? Try This - YouTube
03:01
Configure Prettier in VS Code | Not working issue fix - Code ...
04:33
Prettier in VSCode - Install Code Formatter | Not Working Solved ...
09:41
Replace ESLint with Oxlint - YouTube
08:02
The EASIEST Way To Switch From ESLint & Prettier to Biome — ...
02:30
The Rust Linter From Vite Creator That DESTROYS ESLint - YouTube
npm
npmjs.com › package › @prettier › plugin-oxc
prettier/plugin-oxc
Prettier Oxc plugin.. Latest version: 0.1.3, last published: 3 months ago. Start using @prettier/plugin-oxc in your project by running `npm i @prettier/plugin-oxc`. There are 23 other projects in the npm registry using @prettier/plugin-oxc.
» npm install @prettier/plugin-oxc
Published Dec 03, 2025
Version 0.1.3
Author fisker Cheung
Repository https://github.com/prettier/prettier
npm
npmjs.com › package › prettier-oxc-parser
prettier-oxc-parser - npm
oxc is a fast, really fast. And with the addition of raw transfer, the cost of passing the AST from Rust to JavaScript is close to 0. Raw transfer is only available in Node >= 22. While Prettier with this plugin is far from the performances of pure native formatters like Biome, it give a significant performance improvement for large TS projects while keeping one tool to format all files types.
» npm install prettier-oxc-parser
Published Jul 18, 2025
Version 0.2.0
Author Arnaud Barré
GitHub
github.com › oxc-project › oxc › issues › 15665
oxfmt: prettier plugins · Issue #15665 · oxc-project/oxc
November 13, 2025 - Aim to enable the use of existing Prettier plugins like prettier-plugin-svelte. The current ecosystem primarily consists of two types of plugins. For supporting files not supported by Prettier (original motivation of plugin) prettier-plu...
Author Boshen
Prettier
prettier.io › blog
Prettier blog · Prettier
January 14, 2026 - Additionally, we're releasing two new official plugins: @prettier/plugin-oxc and @prettier/plugin-hermes.
Daily.dev
app.daily.dev › posts › prettier-3-6-experimental-fast-cli-and-new-oxc-and-hermes-plugins-prettier-zpwne37w8
Prettier 3.6: Experimental fast CLI and new OXC ...
daily.dev is the easiest way to stay updated on the latest programming news. Get the best content from the top tech publications on any topic you want.
GitHub
github.com › oxc-project › oxc › discussions › 7571
A Better Formatter 😭 · oxc-project/oxc · Discussion #7571
(I saw a discussion about OXC being a drop-in replacement to Prettier, so that's why I added this text). There are so many prettier plugins for this, but some things are wrong with all of them.
Author oxc-project
GitHub
github.com › prettier › prettier › issues › 17519
Simplify use of `@prettier/plugin-oxc` · Issue #17519 · prettier/prettier
February 26, 2025 - { "overrides": [ { "files": ["**/*.{js,mjs,cjs,jsx}"], "options": { "plugins": ["@prettier/plugin-oxc"], "parser": "oxc" } }, { "files": ["**/*.{ts,mts,cts,tsx}"], "options": { "plugins": ["@prettier/plugin-oxc"], "parser": "oxc-ts" } } ] } I think we can make this work ·
Published May 27, 2025
Author fisker
npm
npmjs.com › package › @ianvs › prettier-plugin-sort-imports
@ianvs/prettier-plugin-sort-imports - npm
This plugin is compatible with the new '@prettier/plugin-oxc' plugin available for Prettier 3.6+, but must be specified after that plugin in the plugins configuration array (i.e.
» npm install @ianvs/prettier-plugin-sort-imports
Published Feb 04, 2026
Version 4.7.1
Oxidation Compiler
oxc.rs › docs › guide › usage › formatter.html
Oxfmt
Oxfmt now passes 100% of Prettier's JavaScript and TypeScript conformance tests. For any remaining formatting inconsistencies, we have reported them to the Prettier team and are collaborating to converge on expected behavior.
GitHub
github.com › oxc-project › oxc › issues › 19715
oxfmt: bundle prettier-plugin-svelte and prettier-plugin-astro · Issue #19715 · oxc-project/oxc
2 weeks ago - https://npmx.dev/package-code/prettier-plugin-astro/v/0.14.1/package.json · Svelte · Research: May need to bundle svelte itself, which version? Our bundled tailwind can work with? Bundle / Collect .svelte / Support options under oxfmtrc.svelte(?) Apply oxc_formatter to js-in-svelte ·
Author Boshen
Oxidation Compiler
oxc.rs › blog › 2026-02-24-oxfmt-beta
Oxfmt Beta
Oxfmt is a Rust-powered, Prettier-compatible code formatter built for the JavaScript ecosystem.