Advertisement · 728 × 90

Posts by

Preview
GitHub - fisker/chrome-uint8-array-from-base64: Reproduce chrome bug? Reproduce chrome bug? Contribute to fisker/chrome-uint8-array-from-base64 development by creating an account on GitHub.

Spend hours to find out why oxc-parser@0.102.0 doesn't work in the Prettier playground.

Turns out it seems to be a Chrome bug. github.com/fisker/chrom...

cc @boshen.github.io 😀

4 months ago 12 0 1 1
Preview
Prettier 3.7: Improved formatting consistency and new plugin features! · Prettier We are excited to announce Prettier 3.7! This release focuses on polishing the TypeScript and Flow experience, specifically by aligning the formatting of classes and interfaces to be more consistent a...

Released Prettier v3.7 prettier.io/blog/2025/11...

4 months ago 0 0 0 0

Wow, you can add a default export to a module that uses named exports

```js
// module.js
export * as default from './module.js';
export const foo = 1;
export const bar = 2;
```

Prettier actually needs this (currently using an esbuild plugin)

github.com/prettier/pre...

5 months ago 0 0 0 0

It also works in browsers, but I think it's reasonable.

5 months ago 0 0 0 0

Is self-import allowed in ESM?

```
>cat test.js
export const hello = "it works!";
import { hello as importedHello } from "./test.js";

console.log({
hello,
importedHello,
});

>node test.js
{ hello: 'it works!', importedHello: 'it works!' }
```

github.com/nodejs/node/...

5 months ago 1 0 2 0

FYI: `() => undefined` is allowed under `checkArrowFunctionBody` option github.com/sindresorhus...

7 months ago 2 0 1 0
Preview
Support Configuration Overrides for the experimental cli. · Issue #70 · prettier/prettier-cli I've been trying out the new experimental CLI, and it is indeed seeming to be a lot faster. Something I've noticed is that it appears there's no current support for Configuration Overrides. I suspe...

Make sense, there is already an open issue tracking the override problem github.com/prettier/pre...

9 months ago 1 0 0 0

Are you saying the override doesn't work anymore? That's unexpected.

9 months ago 0 0 1 0

This change was made in v3.2.5, which version did you use before v3.6? github.com/prettier/pre...

9 months ago 0 0 1 0