mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
feat: Support deno-fmt-ignore-file for markdown formatting (#10191)
This commit is contained in:
parent
0d3b22a53a
commit
791513d608
3 changed files with 6 additions and 6 deletions
|
@ -35,8 +35,8 @@
|
|||
"tools/wpt/manifest.json"
|
||||
],
|
||||
"plugins": [
|
||||
"https://plugins.dprint.dev/typescript-0.43.0.wasm",
|
||||
"https://plugins.dprint.dev/json-0.10.0.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.6.2.wasm"
|
||||
"https://plugins.dprint.dev/typescript-0.44.0.wasm",
|
||||
"https://plugins.dprint.dev/json-0.10.1.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.7.0.wasm"
|
||||
]
|
||||
}
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -856,9 +856,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "dprint-plugin-markdown"
|
||||
version = "0.6.2"
|
||||
version = "0.7.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "adc6e49d7c853ab62958e744f12498368d71c25c398c523364ac1810845089df"
|
||||
checksum = "86b08578cbf2afef06f8144db2be7a50a9bcf948a7ec7eae42e936386534af82"
|
||||
dependencies = [
|
||||
"dprint-core 0.35.3",
|
||||
"pulldown-cmark",
|
||||
|
|
|
@ -46,7 +46,7 @@ clap = "2.33.3"
|
|||
data-url = "0.1.0"
|
||||
dissimilar = "1.0.2"
|
||||
dprint-plugin-json = "0.10.1"
|
||||
dprint-plugin-markdown = "0.6.2"
|
||||
dprint-plugin-markdown = "0.7.0"
|
||||
dprint-plugin-typescript = "0.44.0"
|
||||
encoding_rs = "0.8.28"
|
||||
env_logger = "0.8.3"
|
||||
|
|
Loading…
Reference in a new issue