mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 21:07:56 +00:00
9b6db48a42
This PR is mainly to fix the error `[E0670]: async fn is not permitted in the 2015 edition` when using Vim along with rust-analyzer, it also removes an unused dependency from parachain-template. Ref: https://github.com/rust-analyzer/rust-analyzer/issues/1959
25 lines
478 B
TOML
25 lines
478 B
TOML
# Basic
|
|
edition = "2021"
|
|
hard_tabs = true
|
|
max_width = 100
|
|
use_small_heuristics = "Max"
|
|
|
|
# Imports
|
|
imports_granularity = "Crate"
|
|
reorder_imports = true
|
|
|
|
# Consistency
|
|
newline_style = "Unix"
|
|
|
|
# Misc
|
|
binop_separator = "Back"
|
|
chain_width = 80
|
|
match_arm_blocks = false
|
|
match_arm_leading_pipes = "Preserve"
|
|
match_block_trailing_comma = true
|
|
reorder_impl_items = false
|
|
spaces_around_ranges = false
|
|
trailing_comma = "Vertical"
|
|
trailing_semicolon = false
|
|
use_field_init_shorthand = true
|