diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2021-04-26 11:43:32 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-26 17:43:32 +0200 |
| commit | 791513d608279796a6a1fd963ea1d5b012699baa (patch) | |
| tree | 1fe7bf5abd52ee6c3151b3041b0000366fa6e335 | |
| parent | 0d3b22a53a21544b0105f01bda297d98e1884dd4 (diff) | |
feat: Support deno-fmt-ignore-file for markdown formatting (#10191)
| -rw-r--r-- | .dprintrc.json | 6 | ||||
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | cli/Cargo.toml | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/.dprintrc.json b/.dprintrc.json index 71ee14d70..934707c8d 100644 --- a/.dprintrc.json +++ b/.dprintrc.json @@ -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" ] } diff --git a/Cargo.lock b/Cargo.lock index f505f318c..8535ea602 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 90fa80593..a2b90b916 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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" |
