Basic TOML Lint (#11348)

* basic lint

* lint ordering
This commit is contained in:
Shawn Tabrizi
2022-05-04 14:38:54 +01:00
committed by GitHub
parent 19a9e56444
commit 7d5202341b
186 changed files with 1435 additions and 1531 deletions
+7 -8
View File
@@ -12,19 +12,18 @@ readme = "README.md"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-state-machine = { version = "0.12.0", path = "../../primitives/state-machine" }
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" }
codec = { package = "parity-scale-codec", version = "3.0.0", features = [
"derive",
] }
sc-client-api = { version = "4.0.0-dev", path = "../api" }
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
sp-block-builder = { version = "4.0.0-dev", path = "../../primitives/block-builder" }
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
sp-core = { version = "6.0.0", path = "../../primitives/core" }
sp-block-builder = { version = "4.0.0-dev", path = "../../primitives/block-builder" }
sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" }
sc-client-api = { version = "4.0.0-dev", path = "../api" }
codec = { package = "parity-scale-codec", version = "3.0.0", features = [
"derive",
] }
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" }
sp-state-machine = { version = "0.12.0", path = "../../primitives/state-machine" }
[dev-dependencies]
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }