diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-10-18 10:21:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-18 10:21:42 -0400 |
commit | 0a7ba33ed13450af031503a1060389037c509ea3 (patch) | |
tree | 456a4e343eaff0d9b21cc58d0e2b431b70c80e8f | |
parent | 63379185e2a1937f6830cbff634f178ca491672a (diff) |
fix(fmt): keep parens for JS doc type assertions (#12475)
-rw-r--r-- | .dprint.json | 2 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.dprint.json b/.dprint.json index 65242f064..dfda2ee67 100644 --- a/.dprint.json +++ b/.dprint.json @@ -35,7 +35,7 @@ "tools/wpt/manifest.json" ], "plugins": [ - "https://plugins.dprint.dev/typescript-0.57.3.wasm", + "https://plugins.dprint.dev/typescript-0.57.4.wasm", "https://plugins.dprint.dev/json-0.13.0.wasm", "https://plugins.dprint.dev/markdown-0.10.0.wasm", "https://plugins.dprint.dev/toml-0.5.2.wasm" diff --git a/Cargo.lock b/Cargo.lock index d832121b7..d24ea2e0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1151,9 +1151,9 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.57.3" +version = "0.57.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fc63cff32dd37a96034f11e028fbd45404729874642b6ff6c4f69306f8c128d" +checksum = "2482bd23ef65c93a4f3ad0f5413d2f3ac6f357caded8bb562c37008f0a69fb5d" dependencies = [ "dprint-core", "dprint-swc-ecma-ast-view", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index c31e102fd..31fb9aceb 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -54,7 +54,7 @@ data-url = "0.1.0" dissimilar = "1.0.2" dprint-plugin-json = "0.13.0" dprint-plugin-markdown = "0.10.0" -dprint-plugin-typescript = "0.57.3" +dprint-plugin-typescript = "0.57.4" encoding_rs = "0.8.28" env_logger = "0.8.4" fancy-regex = "0.7.1" |