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
@@ -12,18 +12,18 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../application-crypto" }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "6.0.0", default-features = false, path = "../core" }
serde = { version = "1.0.136", optional = true, features = ["derive"] }
sp-runtime = { version = "6.0.0", default-features = false, path = "../runtime" }
parity-util-mem = { version = "0.11.0", default-features = false, features = ["primitive-types"] }
serde = { version = "1.0.136", features = ["derive"], optional = true }
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../application-crypto" }
sp-core = { version = "6.0.0", default-features = false, path = "../core" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../runtime" }
[features]
default = [
"std",
]
std = [
"sp-application-crypto/std",
"serde",
"sp-application-crypto/std",
]