mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix(fmt): semiColons: false - handle prop with following generator and do while with no block body (#17567)
Closes #17559
This commit is contained in:
parent
2b247be517
commit
1803df7d3a
3 changed files with 4 additions and 4 deletions
|
@ -43,7 +43,7 @@
|
||||||
"tools/wpt/manifest.json"
|
"tools/wpt/manifest.json"
|
||||||
],
|
],
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"https://plugins.dprint.dev/typescript-0.80.2.wasm",
|
"https://plugins.dprint.dev/typescript-0.81.1.wasm",
|
||||||
"https://plugins.dprint.dev/json-0.17.0.wasm",
|
"https://plugins.dprint.dev/json-0.17.0.wasm",
|
||||||
"https://plugins.dprint.dev/markdown-0.15.2.wasm",
|
"https://plugins.dprint.dev/markdown-0.15.2.wasm",
|
||||||
"https://plugins.dprint.dev/toml-0.5.4.wasm",
|
"https://plugins.dprint.dev/toml-0.5.4.wasm",
|
||||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1464,9 +1464,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dprint-plugin-typescript"
|
name = "dprint-plugin-typescript"
|
||||||
version = "0.80.2"
|
version = "0.81.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "74eb3bfe4a29790f676d30159fca39ddd1450308185b2bd412517493d2449e52"
|
checksum = "a5991c52c38d10079ecc8d4b4addcfcf77c125244027ce0934631ac22c6b6b36"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"deno_ast",
|
"deno_ast",
|
||||||
|
|
|
@ -66,7 +66,7 @@ data-url.workspace = true
|
||||||
dissimilar = "=1.0.4"
|
dissimilar = "=1.0.4"
|
||||||
dprint-plugin-json = "=0.17.0"
|
dprint-plugin-json = "=0.17.0"
|
||||||
dprint-plugin-markdown = "=0.15.2"
|
dprint-plugin-markdown = "=0.15.2"
|
||||||
dprint-plugin-typescript = "=0.80.2"
|
dprint-plugin-typescript = "=0.81.1"
|
||||||
encoding_rs.workspace = true
|
encoding_rs.workspace = true
|
||||||
env_logger = "=0.9.0"
|
env_logger = "=0.9.0"
|
||||||
eszip = "=0.33.0"
|
eszip = "=0.33.0"
|
||||||
|
|
Loading…
Reference in a new issue