1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(fmt): maintain parens for jsx in member expr (#21280)

Fix in
0b44991bb9

Closes https://github.com/denoland/deno/issues/21279
This commit is contained in:
David Sherret 2023-11-20 18:38:06 -05:00 committed by GitHub
parent 08f5db5c62
commit 0f2cbcf6a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -55,10 +55,10 @@
"ext/websocket/autobahn/reports"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.88.3.wasm",
"https://plugins.dprint.dev/typescript-0.88.4.wasm",
"https://plugins.dprint.dev/json-0.19.0.wasm",
"https://plugins.dprint.dev/markdown-0.16.2.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm",
"https://plugins.dprint.dev/exec-0.4.3.json@42343548b8022c99b1d750be6b894fe6b6c7ee25f72ae9f9082226dd2e515072"
"https://plugins.dprint.dev/exec-0.4.4.json@c207bf9b9a4ee1f0ecb75c594f774924baf62e8e53a2ce9d873816a408cecbf7"
]
}

4
Cargo.lock generated
View file

@ -1955,9 +1955,9 @@ dependencies = [
[[package]]
name = "dprint-plugin-typescript"
version = "0.88.3"
version = "0.88.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c51dda57191fcc97f1da77927a29ecb6f5ec7133f705dcc7134533f3090681c"
checksum = "3a5be6e2f026971bd4b75ed2b77203c4195587229818ddef23721f66a044907b"
dependencies = [
"anyhow",
"deno_ast",

View file

@ -83,7 +83,7 @@ dissimilar = "=1.0.4"
dotenvy = "0.15.7"
dprint-plugin-json = "=0.19.0"
dprint-plugin-markdown = "=0.16.2"
dprint-plugin-typescript = "=0.88.3"
dprint-plugin-typescript = "=0.88.4"
encoding_rs.workspace = true
env_logger = "=0.10.0"
fancy-regex = "=0.10.0"