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
+4 -4
View File
@@ -13,18 +13,18 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
async-trait = { version = "0.1.50", optional = true }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "4.0.0", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
async-trait = { version = "0.1.50", optional = true }
[features]
default = [ "std" ]
std = [
"async-trait",
"codec/std",
"sp-std/std",
"sp-inherents/std",
"sp-runtime/std",
"async-trait",
"sp-std/std",
]