added editor schema.json inline support e.g. VS Code, Atom etc. (#1988)

main
Max Schmitt 7 years ago committed by Elbert Alias
parent 08d9f18426
commit f0546375ac

@ -3,6 +3,9 @@
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"$schema": {
"type": "string"
},
"categories": { "categories": {
"type": "object", "type": "object",
"required": true, "required": true,
@ -48,19 +51,28 @@
} }
}, },
"html": { "html": {
"type": [ "string", "array" ], "type": [
"string",
"array"
],
"items": { "items": {
"type": "string" "type": "string"
} }
}, },
"excludes": { "excludes": {
"type": [ "string", "array" ], "type": [
"string",
"array"
],
"items": { "items": {
"type": "string" "type": "string"
} }
}, },
"implies": { "implies": {
"type": [ "string", "array" ], "type": [
"string",
"array"
],
"items": { "items": {
"type": "string" "type": "string"
} }
@ -72,7 +84,10 @@
} }
}, },
"script": { "script": {
"type": [ "string", "array" ], "type": [
"string",
"array"
],
"items": { "items": {
"type": "string" "type": "string"
} }
@ -91,4 +106,4 @@
} }
} }
} }
} }

@ -1,4 +1,5 @@
{ {
"$schema": "../schema.json",
"apps": { "apps": {
"1&1": { "1&1": {
"cats": [ "cats": [
@ -12358,4 +12359,4 @@
"priority": "8" "priority": "8"
} }
} }
} }