Skip to content

Commit

Permalink
fix: taplo exlusion/inclusion policy
Browse files Browse the repository at this point in the history
  • Loading branch information
th7nder committed May 15, 2024
1 parent 5082775 commit 6f26c13
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 25 deletions.
4 changes: 3 additions & 1 deletion .taplo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[[rule]]
exclude = [".direnv/*"]
include = ["**/*.toml"]

[[rule]]

[rule.formatting]
column_width = 150
reorder_arrays = true
Expand Down
13 changes: 2 additions & 11 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
[toolchain]
channel = "1.77.0"
components = [
"cargo",
"clippy",
"rust-analyzer",
"rust-src",
"rust-std",
"rustc",
"rustc-dev",
"rustfmt",
]
components = ["cargo", "clippy", "rust-analyzer", "rust-src", "rust-std", "rustc", "rustc-dev", "rustfmt"]
profile = "minimal"
targets = ["wasm32-unknown-unknown"]
profile = "minimal"
26 changes: 13 additions & 13 deletions scripts/local-testnet.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[relaychain]
default_command = "polkadot"
chain = "rococo-local"
default_command = "polkadot"

[[relaychain.nodes]]
name = "alice"
validator = true
[[relaychain.nodes]]
name = "alice"
validator = true

[[relaychain.nodes]]
name = "bob"
validator = true
[[relaychain.nodes]]
name = "bob"
validator = true

[[parachains]]
id = 2000
cumulus_based = true
id = 2000

# run charlie as parachain collator
[[parachains.collators]]
name = "charlie"
validator = true
command = "target/release/polka-storage-node"
# run charlie as parachain collator
[[parachains.collators]]
command = "target/release/polka-storage-node"
name = "charlie"
validator = true

0 comments on commit 6f26c13

Please sign in to comment.