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 -12
View File
@@ -14,26 +14,26 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
impl-serde = { version = "0.3.1", optional = true }
serde = { version = "1.0.136", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
sp-std = { version = "4.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../runtime" }
sp-version-proc-macro = { version = "4.0.0-dev", default-features = false, path = "proc-macro" }
impl-serde = { version = "0.3.1", optional = true }
parity-wasm = { version = "0.42.2", optional = true }
sp-core-hashing-proc-macro = { version = "5.0.0", path = "../core/hashing/proc-macro" }
scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.136", features = ["derive"], optional = true }
thiserror = { version = "1.0.30", optional = true }
sp-core-hashing-proc-macro = { version = "5.0.0", path = "../core/hashing/proc-macro" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "4.0.0", default-features = false, path = "../std" }
sp-version-proc-macro = { version = "4.0.0-dev", default-features = false, path = "proc-macro" }
[features]
default = ["std"]
std = [
"impl-serde",
"serde",
"codec/std",
"scale-info/std",
"sp-std/std",
"sp-runtime/std",
"impl-serde",
"parity-wasm",
"scale-info/std",
"serde",
"sp-runtime/std",
"sp-std/std",
"thiserror",
]
@@ -16,10 +16,10 @@ targets = ["x86_64-unknown-linux-gnu"]
proc-macro = true
[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
proc-macro2 = "1.0.37"
quote = "1.0.10"
syn = { version = "1.0.82", features = ["full", "fold", "extra-traits", "visit"] }
proc-macro2 = "1.0.37"
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
[dev-dependencies]
sp-version = { version = "5.0.0", path = ".." }