13 lines
351 B
Plaintext
13 lines
351 B
Plaintext
|
|
{
|
||
|
|
"$schema" = "http://json-schema.org/draft-07/schema#",
|
||
|
|
title = "linted-code",
|
||
|
|
description = "Output of lint-crate node",
|
||
|
|
type = "object",
|
||
|
|
required = ["warnings", "errors", "ok"],
|
||
|
|
properties = {
|
||
|
|
warnings = { type = "integer" },
|
||
|
|
errors = { type = "integer" },
|
||
|
|
ok = { type = "boolean" },
|
||
|
|
},
|
||
|
|
}
|