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
@@ -15,10 +15,10 @@ targets = ["x86_64-unknown-linux-gnu"]
proc-macro = true
[dependencies]
syn = { version = "1.0.82", features = ["full", "visit"] }
quote = "1.0.10"
proc-macro2 = "1.0.37"
proc-macro-crate = "1.1.3"
proc-macro2 = "1.0.37"
quote = "1.0.10"
syn = { version = "1.0.82", features = ["full", "visit"] }
[dev-dependencies]
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
+2 -2
View File
@@ -14,12 +14,12 @@ targets = ["x86_64-unknown-linux-gnu"]
[lib]
[dependencies]
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../../primitives/arithmetic" }
log = { version = "0.4.16", default-features = false }
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../../primitives/arithmetic" }
[features]
default = ["std"]
std = [
"sp-arithmetic/std",
"log/std",
"sp-arithmetic/std",
]