惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
T
Troy Hunt's Blog
Scott Helme
Scott Helme
T
Threat Research - Cisco Blogs
T
Tenable Blog
L
LINUX DO - 热门话题
V
Visual Studio Blog
I
Intezer
Blog — PlanetScale
Blog — PlanetScale
Cisco Talos Blog
Cisco Talos Blog
A
Arctic Wolf
C
Cyber Attacks, Cyber Crime and Cyber Security
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
Know Your Adversary
Know Your Adversary
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
N
Netflix TechBlog - Medium
SecWiki News
SecWiki News
I
InfoQ
Microsoft Security Blog
Microsoft Security Blog
Project Zero
Project Zero
W
WeLiveSecurity
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
Recorded Future
Recorded Future
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
S
Securelist
Spread Privacy
Spread Privacy
L
LangChain Blog
云风的 BLOG
云风的 BLOG
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
Recent Commits to openclaw:main
Recent Commits to openclaw:main
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
CERT Recently Published Vulnerability Notes
罗磊的独立博客
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
The Last Watchdog
The Last Watchdog
Attack and Defense Labs
Attack and Defense Labs
博客园 - 司徒正美
Help Net Security
Help Net Security
L
Lohrmann on Cybersecurity
人人都是产品经理
人人都是产品经理
Forbes - Security
Forbes - Security
Hacker News - Newest:
Hacker News - Newest: "LLM"
PCI Perspectives
PCI Perspectives
博客园 - 【当耐特】
T
Tor Project blog

Prettier Blog

Prettier 3.9: Major parser upgrades and Formatting improvements Prettier 3.8: Support for Angular v21.1 Prettier 3.7: Improved formatting consistency and new plugin features! Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins! Prettier 3.5: New objectWrap option, experimentalOperatorPosition option and TS config file support! Prettier 3.4: A lot of bug fixes Prettier 3.3: New Flow features and a lot of bug fixes Prettier's CLI: A Performance Deep Dive $20k Bounty was Claimed! Prettier 3.1: New experimental ternaries formatting and Angular control flow syntax! A curious case of the ternaries Prettier 3.0: Hello, ECMAScript Modules! Prettier 2.8: improve --cache CLI option and TypeScript 4.9 satisfies operator! Prettier 2.7: new --cache CLI option and TypeScript 4.7 syntax! Prettier 2.6: new singleAttributePerLine option and new JavaScript features! Prettier begins paying maintainers Prettier 2.5: TypeScript 4.5 and MDX v2 comment syntax! Prettier 2.4: new bracketSameLine option and TypeScript 4.4 support! Prettier 2.3. In which assignments are consistent, short keys non-breaking, and Handlebars official Prettier for Ruby goes v1.0 🎉
Prettier 3.2: Support JSONC and Angular’s ICU expression
Sosuke Suzuki · 2024-01-12 · via Prettier Blog

This release includes new features such as adding a JSONC parser, adding Angular’s ICU expressions, and many bug fixes.

We are still seeking feedback for the --experimental-ternaries option released in Prettier 3.1. Please read A curious case of the ternaries and respond via the Google Forms link provided.

Additionally, we recommend reading Prettier's CLI: A Performance Deep Dive by Fabio Spampinato. This faster CLI is slated to be released as version 4.0.

If you appreciate Prettier and would like to support our work, please consider sponsoring us directly via our OpenCollective or by sponsoring the projects we depend on, such as typescript-eslint, remark, and Babel. Thank you for your continued support!

Highlights

JSON

New jsonc parser added (#15831 by @fisker)

Previously, we infer the parser of .jsonc files to be json, but if we want keep the trailing comma, we'll have to use a hacky workaround config {parser: "json5", quoteProps: "preserve", singleQuote: false}.

The new added jsonc parser:

  • Always quote the object keys.
  • Wrap strings with double quotes.
  • Of course, respect the trailingComma option.

Angular

Support formatting for Angular ICU expression (#15777 by @sosukesuzuki)

Support two kinds of Angular ICU expressions: plural and select.

<span i18n>

Updated:

{minutes, plural,

=0 {just now}

=1 {one minute ago}

other {{{minutes}} minutes ago}

}

</span>

<span i18n>

The author is {gender, select, male {male} female {female} other {other}}

</span>

Other Changes

JavaScript

Avoid introducing linebreaks in template interpolations (#15209 by @bakkot)

In a template string like

`this is a long message which contains an interpolation: ${format(data)} <- like this`;

avoid adding a linebreak when formatting the expression unless one is already present or it's unavoidable due to e.g. a nested function. Previously a linebreak could be introduced whenever some interpolation in the template was sufficiently "not simple":

`this is a long message which contains an interpolation: ${format(

data,

)} <- like this`;

Now it will instead be left alone.

If a linebreak is already present within the ${...}, format as normal.

Fix non-idempotent formatting of method chain with empty line (#15522 by @seiyab)

// Input

Foo.a()

.b();

// Prettier 3.1 (first format)

Foo.a()

.b();

// Prettier 3.1 (second format)

Foo.a().b();

// Prettier 3.2

Foo.a()

.b();

Fix formatting of ternary in function call (#15677 by @fisker)

// Input

stopDirectory = await (useCache

? memoizedFindProjectRoot

: findProjectRootWithoutCache)(path.dirname(path.resolve(filePath)));

// Prettier 3.1

stopDirectory = await (useCache

? memoizedFindProjectRoot

: findProjectRootWithoutCache)(path.dirname(path.resolve(filePath)));

// Prettier 3.2

stopDirectory = await (

useCache ? memoizedFindProjectRoot : findProjectRootWithoutCache

)(path.dirname(path.resolve(filePath)));

Fix inconsistencies for optional-chaining (#15806 by @fisker)

Only happens when using typescript, meriyah or other ESTree parsers except babel.

// Input

function someFunctionName() {

return isEqual(a.map(([t, _]) => t?.id), b.map(([t, _]) => t?.id));

return isEqual(a?.map(([t, _]) => t?.id), b?.map(([t, _]) => t?.id));

}

theValue = Object.entries(someLongObjectName).filter(

([listingId]) => someListToCompareToHere.includes(listingId),

);

theValue = Object.entries(someLongObjectName).filter(

([listingId]) => someListToCompareToHere?.includes(listingId),

);

// Prettier 3.1

function someFunctionName() {

return isEqual(

a.map(([t, _]) => t?.id),

b.map(([t, _]) => t?.id),

);

return isEqual(a?.map(([t, _]) => t?.id), b?.map(([t, _]) => t?.id));

}

theValue = Object.entries(someLongObjectName).filter(([listingId]) =>

someListToCompareToHere.includes(listingId),

);

theValue = Object.entries(someLongObjectName).filter(

([listingId]) => someListToCompareToHere?.includes(listingId),

);

// Prettier 3.2

function someFunctionName() {

return isEqual(

a.map(([t, _]) => t?.id),

b.map(([t, _]) => t?.id),

);

return isEqual(

a?.map(([t, _]) => t?.id),

b?.map(([t, _]) => t?.id),

);

}

theValue = Object.entries(someLongObjectName).filter(([listingId]) =>

someListToCompareToHere.includes(listingId),

);

theValue = Object.entries(someLongObjectName).filter(([listingId]) =>

someListToCompareToHere?.includes(listingId),

);

// Input

if (foo) for (i = 2; i > 0; i--) console.log(i); // comment 1

else bar();

for (;;){

if (foo) continue; // comment 2

else bar();

}

// Prettier 3.1

Error: Comment "comment 2" was not printed. Please report this error!

// Prettier 3.2

if (foo)

for (i = 2; i > 0; i--) console.log(i); // comment 1

else bar();

for (;;) {

if (foo)

continue; // comment 2

else bar();

}

TypeScript

Improve conditional type alias layout (#15811 by @seiyab)

// Input

type FallbackFlags<F extends Flags | undefined> =

Equals<NonNullableFlag<F>["flags"], {}> extends true

? Dict<any>

: NonNullableFlag<F>["flags"];

// Prettier 3.1

type FallbackFlags<F extends Flags | undefined> = Equals<

NonNullableFlag<F>["flags"],

{}

> extends true

? Dict<any>

: NonNullableFlag<F>["flags"];

// Prettier 3.2

type FallbackFlags<F extends Flags | undefined> =

Equals<NonNullableFlag<F>["flags"], {}> extends true

? Dict<any>

: NonNullableFlag<F>["flags"];

HTML

Fix formatting of prettier-ignored unclosed elements (#15748 by @fisker)

<!-- Input -->

<!-- prettier-ignore -->

<h1>

Hello <span>world!

<!-- Prettier 3.1 -->

<!-- prettier-ignore -->

<h1>

<!-- Prettier 3.2 -->

<!-- prettier-ignore -->

<h1>

Hello <span>world!

Angular

Fix prettier-ignored angular control flow block (#15827 by @fisker)

<!-- Input -->

<!-- prettier-ignore -->

@if (condition) {

Foo

} @else {

Other

}

<!-- Prettier 3.1 -->

<!-- prettier-ignore -->

@if (condition) {

Foo

}

} @else {

Other

}

<!-- Prettier 3.2 -->

<!-- prettier-ignore -->

@if (condition) {

Foo

}

@else {

Other

}

Avoid adding colon for track in 3rd expression of for blocks (#15887 by @sosukesuzuki)

<!-- Input -->

@for (item of items; let i = $index; track block) {}

<!-- Prettier 3.1 -->

@for (item of items; let i = $index; track: block) {}

<!-- Prettier 3.2 -->

@for (item of items; let i = $index; track block) {}

Ember / Handlebars

Preserve path literal segments (#15605 by @maxpowa)

Fixes scenarios where an input handlebars file containing literal segments would be reformatted to unwrap the literal segments, causing syntax errors in the resulting output.

<!-- Input -->

{{input.[funky<api!response]}}

{{input.[this one has spaces]}}

{{input.[anotherone].[0]}}

<!-- Prettier 3.1 -->

{{input.funky<api!response}}

{{input.this one has spaces}}

{{input.anotherone.0}}

<!-- Prettier 3.2 -->

{{input.[funky<api!response]}}

{{input.[this one has spaces]}}

{{input.anotherone.[0]}}

GraphQL

Improve GraphQL union types formatting (#15870 by @ArchitGajjar)

# Input

union SearchResult = Conference| Festival | Concert | Venue | Conference| Festival | Concert | Venue

# Prettier 3.1

union SearchResult =

Conference

| Festival

| Concert

| Venue

| Conference

| Festival

| Concert

| Venue

# Prettier 3.2

union SearchResult =

| Conference

| Festival

| Concert

| Venue

| Conference

| Festival

| Concert

| Venue

API

Support absolute path as plugin in config file (#15666 by @fisker)

// prettier.config.cjs

module.exports = {

plugins: [

// posix style

"/path/to/plugin.js",

// Windows style

"D:\\\\path\\to\\plugin.js",

// Use `require.resolve`

require.resolve("my-awesome-prettier-plugin"),

],

};

Fix getFileInfo and getSupportInfo type definitions (#15854 by @auvred)

const plugin: Plugin = {};

prettier.getFileInfo("./file.ext", {

plugins: [plugin],

});

prettier.getSupportInfo({ plugins: [plugin], showDeprecated: true });

Miscellaneous

Fix false claim in docs that cursorOffset is incompatible with rangeStart/rangeEnd (#15750 by @ExplodingCabbage)

The cursorOffset option has in fact been compatible with rangeStart/rangeEnd for over 5 years, thanks to work by @ds300. However, Prettier's documentation (including the CLI --help text) continued to claim otherwise, falsely. The documentation is now fixed.