chore(deps): update dependency prettier to ^3.5.3
This MR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
prettier (source) | ^3.5.2 -> ^3.5.3 |
Release Notes
prettier/prettier (prettier)
v3.5.3
ConditionalTypeAnnotation
(#17196 by @fisker)
Flow: Fix missing parentheses in // Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.