mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix(fmt/markdown): improve ignore comment handling (#20421)
Two bug fixes: * https://github.com/dprint/dprint-plugin-markdown/pull/85 * https://github.com/dprint/dprint-plugin-markdown/pull/84
This commit is contained in:
parent
f3d25af61c
commit
1b7d5937d9
3 changed files with 4 additions and 4 deletions
|
@ -57,7 +57,7 @@
|
|||
"plugins": [
|
||||
"https://plugins.dprint.dev/typescript-0.87.1.wasm",
|
||||
"https://plugins.dprint.dev/json-0.17.4.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.16.0.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.16.1.wasm",
|
||||
"https://plugins.dprint.dev/toml-0.5.4.wasm",
|
||||
"https://plugins.dprint.dev/exec-0.4.3.json@42343548b8022c99b1d750be6b894fe6b6c7ee25f72ae9f9082226dd2e515072"
|
||||
]
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1801,9 +1801,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "dprint-plugin-markdown"
|
||||
version = "0.16.0"
|
||||
version = "0.16.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e9c557186cbae35d90a72fd6081c5c321ff002e5883d134497c433961992fc8c"
|
||||
checksum = "faf3e228c56be47b43af72309c2b8025491012b41d5397cd7b91172ce1368cf3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dprint-core",
|
||||
|
|
|
@ -74,7 +74,7 @@ console_static_text.workspace = true
|
|||
data-url.workspace = true
|
||||
dissimilar = "=1.0.4"
|
||||
dprint-plugin-json = "=0.17.4"
|
||||
dprint-plugin-markdown = "=0.16.0"
|
||||
dprint-plugin-markdown = "=0.16.1"
|
||||
dprint-plugin-typescript = "=0.87.1"
|
||||
encoding_rs.workspace = true
|
||||
env_logger = "=0.10.0"
|
||||
|
|
Loading…
Reference in a new issue