mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-31 15:20:15 +00:00
Replace cargo-fmt with dprint
If we want to use stable Rust, we can't use cargo-fmt with nightly features.
This commit is contained in:
parent
b8cb9e1b8b
commit
694ade11d1
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@ -17,9 +17,6 @@ jobs:
|
|||||||
|
|
||||||
- uses: Swatinem/rust-cache@v1.2.0
|
- uses: Swatinem/rust-cache@v1.2.0
|
||||||
|
|
||||||
- name: Check code formatting
|
|
||||||
run: cargo fmt --all -- --check
|
|
||||||
|
|
||||||
- name: Check formatting
|
- name: Check formatting
|
||||||
uses: dprint/check@v1.4
|
uses: dprint/check@v1.4
|
||||||
|
|
||||||
|
18
dprint.json
18
dprint.json
@ -4,10 +4,22 @@
|
|||||||
"incremental": true,
|
"incremental": true,
|
||||||
"markdown": {
|
"markdown": {
|
||||||
},
|
},
|
||||||
"includes": ["**/*.{md}", "**/*.{toml}"],
|
"rustfmt": {
|
||||||
"excludes": [ ],
|
"edition": 2018,
|
||||||
|
"condense_wildcard_suffixes": true,
|
||||||
|
"format_macro_matchers": true,
|
||||||
|
"imports_granularity" : "Module",
|
||||||
|
"use_field_init_shorthand": true,
|
||||||
|
"format_code_in_doc_comments": true,
|
||||||
|
"normalize_comments": true,
|
||||||
|
"wrap_comments": true,
|
||||||
|
"overflow_delimited_expr": true
|
||||||
|
},
|
||||||
|
"includes": ["**/*.{md}", "**/*.{toml}", "**/*.{rs}"],
|
||||||
|
"excludes": [ "target/" ],
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"https://plugins.dprint.dev/markdown-0.6.1.wasm",
|
"https://plugins.dprint.dev/markdown-0.6.1.wasm",
|
||||||
"https://github.com/thomaseizinger/dprint-plugin-cargo-toml/releases/download/0.1.0/cargo-toml-0.1.0.wasm"
|
"https://github.com/thomaseizinger/dprint-plugin-cargo-toml/releases/download/0.1.0/cargo-toml-0.1.0.wasm",
|
||||||
|
"https://plugins.dprint.dev/rustfmt-0.4.0.exe-plugin@c6bb223ef6e5e87580177f6461a0ab0554ac9ea6b54f78ea7ae8bf63b14f5bc2"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "nightly-2021-01-31"
|
channel = "nightly-2021-01-31"
|
||||||
components = ["rustfmt", "clippy"]
|
components = ["clippy"]
|
||||||
targets = ["armv7-unknown-linux-gnueabihf"]
|
targets = ["armv7-unknown-linux-gnueabihf"]
|
||||||
|
12
rustfmt.toml
12
rustfmt.toml
@ -1,12 +0,0 @@
|
|||||||
edition = "2018"
|
|
||||||
condense_wildcard_suffixes = true
|
|
||||||
format_macro_matchers = true
|
|
||||||
imports_granularity = "Module"
|
|
||||||
use_field_init_shorthand = true
|
|
||||||
format_code_in_doc_comments = true
|
|
||||||
normalize_comments = true
|
|
||||||
wrap_comments = true
|
|
||||||
overflow_delimited_expr = true
|
|
||||||
ignore = [
|
|
||||||
"tokio-tar"
|
|
||||||
]
|
|
Loading…
Reference in New Issue
Block a user