You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### Add parentheses for nullish coalescing in ternary ([#16391](https://github.com/prettier/prettier/pull/16391) by [@cdignam-segment](https://github.com/cdignam-segment))
6
+
7
+
This change adds clarity to operator precedence.
8
+
9
+
<!-- prettier-ignore -->
10
+
```js
11
+
// Input
12
+
foo ? bar ?? foo : baz;
13
+
foo ?? bar ? a : b;
14
+
a ? b : foo ?? bar;
15
+
16
+
// Prettier 3.3.2
17
+
foo ? bar ?? foo : baz;
18
+
foo ?? bar ? a : b;
19
+
a ? b : foo ?? bar;
20
+
21
+
// Prettier 3.3.3
22
+
foo ? (bar ?? foo) : baz;
23
+
(foo ?? bar) ? a : b;
24
+
a ? b : (foo ?? bar);
25
+
```
26
+
27
+
#### Add parentheses for decorator expressions ([#16458](https://github.com/prettier/prettier/pull/16458) by [@y-schneider](https://github.com/y-schneider))
28
+
29
+
Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.
30
+
31
+
<!-- prettier-ignore -->
32
+
```ts
33
+
// Input
34
+
@(foo`tagged template`)
35
+
class X {}
36
+
37
+
// Prettier 3.3.2
38
+
@foo`tagged template`
39
+
class X {}
40
+
41
+
// Prettier 3.3.3
42
+
@(foo`tagged template`)
43
+
class X {}
44
+
```
45
+
46
+
#### Support `@let` declaration syntax ([#16474](https://github.com/prettier/prettier/pull/16474) by [@sosukesuzuki](https://github.com/sosukesuzuki))
47
+
48
+
Adds support for Angular v18 `@let` declaration syntax.
49
+
50
+
Please see the following code example. The `@let` declaration allows you to define local variables within the template:
51
+
52
+
<!-- prettier-ignore -->
53
+
```html
54
+
@let name = 'Frodo';
55
+
56
+
<h1>Dashboard for {{name}}</h1>
57
+
Hello, {{name}}
58
+
```
59
+
60
+
For more details, please refer to the excellent blog post by the Angular Team: [Introducing @let in Angular](https://blog.angular.dev/introducing-let-in-angular-686f9f383f0f).
61
+
62
+
We also appreciate the Angular Team for kindly answering our questions to implement this feature.
Copy file name to clipboardexpand all lines: website/versioned_docs/version-stable/browser.md
+16-16
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Required options:
19
19
20
20
-**[`parser`](options.md#parser) (or [`filepath`](options.md#file-path))**: One of these options has to be specified for Prettier to know which parser to use.
21
21
22
-
-**`plugins`**: Unlike the `format` function from the [Node.js-based API](api.md#prettierformatsource--options), this function doesn’t load plugins automatically. The `plugins` option is required because all the parsers included in the Prettier package come as plugins (for reasons of file size). These plugins are files in <https://unpkg.com/browse/[email protected].2/plugins/>. Note that `estree` plugin should be loaded when printing JavaScript, TypeScript, Flow, or JSON.
22
+
-**`plugins`**: Unlike the `format` function from the [Node.js-based API](api.md#prettierformatsource--options), this function doesn’t load plugins automatically. The `plugins` option is required because all the parsers included in the Prettier package come as plugins (for reasons of file size). These plugins are files in <https://unpkg.com/browse/[email protected].3/plugins/>. Note that `estree` plugin should be loaded when printing JavaScript, TypeScript, Flow, or JSON.
23
23
24
24
You need to load the ones that you’re going to use and pass them to `prettier.format` using the `plugins` option.
@@ -48,8 +48,8 @@ Note that the [`unpkg` field](https://unpkg.com/#examples) in Prettier’s `pack
@@ -62,8 +62,8 @@ Note that the [`unpkg` field](https://unpkg.com/#examples) in Prettier’s `pack
Copy file name to clipboardexpand all lines: website/versioned_docs/version-stable/configuration.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -203,11 +203,11 @@ You can also switch to the `flow` parser instead of the default `babel` for .js
203
203
204
204
## Configuration Schema
205
205
206
-
If you’d like a JSON schema to validate your configuration, one is available here: https://json.schemastore.org/prettierrc.
206
+
If you’d like a JSON schema to validate your configuration, one is available here: <https://json.schemastore.org/prettierrc>.
207
207
208
208
## EditorConfig
209
209
210
-
If `options.editorconfig` is `true` and an [`.editorconfig` file](https://editorconfig.org/) is in your project, Prettier will parse it and convert its properties to the corresponding Prettier configuration. This configuration will be overridden by `.prettierrc`, etc.
210
+
If a [`.editorconfig` file](https://editorconfig.org/) is in your project, Prettier will parse it and convert its properties to the corresponding Prettier configuration. This configuration will be overridden by `.prettierrc`, etc.
211
211
212
212
Here’s an annotated description of how different properties map to Prettier’s behavior:
> Tip! Prettier will follow rules specified in .gitignore if it exists in the same directory from which it is run. You can also base your .prettierignore on .eslintignore (if you have one).
Copy file name to clipboardexpand all lines: website/versioned_docs/version-stable/related-projects.md
+1
Original file line number
Diff line number
Diff line change
@@ -31,3 +31,4 @@ original_id: related-projects
31
31
-[prettier-chrome](https://github.com/u3u/prettier-chrome) is an extension that runs Prettier in the browser
32
32
-[spotless](https://github.com/diffplug/spotless) lets you run prettier from [gradle](https://github.com/diffplug/spotless/tree/main/plugin-gradle#prettier) or [maven](https://github.com/diffplug/spotless/tree/main/plugin-maven#prettier).
33
33
-[csharpier](https://github.com/belav/csharpier) is a port of Prettier for C#
34
+
-[reviewdog-action-prettier](https://github.com/EPMatt/reviewdog-action-prettier) runs Prettier in GitHub Actions CI/CD workflows
0 commit comments