Skip to content

Commit ff494fc

Browse files
Add revola schema (SchemaStore#5620)
1 parent 39d4049 commit ff494fc

6 files changed

Lines changed: 523 additions & 0 deletions

File tree

src/api/json/catalog.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
"$schema": "https://json.schemastore.org/schema-catalog.json",
33
"version": 1,
44
"schemas": [
5+
{
6+
"name": "revola.json",
7+
"description": "Configuration file for Revola",
8+
"fileMatch": [
9+
".revola.json",
10+
".revola.config.json",
11+
"revola.json",
12+
"revola.config.json"
13+
],
14+
"url": "https://www.schemastore.org/revola.json"
15+
},
516
{
617
"name": "Hashgraph Online Skill Manifest",
718
"description": "Manifest for Hashgraph Online Registry Broker skill packages",
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"preset": ["node", "node"]
3+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"changelog": {
3+
"enabled": "true",
4+
"includeTypes": ["invalid-type"]
5+
},
6+
"extraField": true,
7+
"git": {
8+
"author": {
9+
"email": "invalid-email",
10+
"name": 123
11+
},
12+
"cleanWorkingDirectory": "yes",
13+
"unknown": true
14+
},
15+
"hooks": {
16+
"after:init": [""],
17+
"before:init": "",
18+
"invalid:hook": ""
19+
},
20+
"jsr": {
21+
"packageManager": "npm",
22+
"publishArgs": ["--invalid-flag"]
23+
},
24+
"logLevel": "verbose",
25+
"npm": {
26+
"access": "private",
27+
"packageManager": "pip",
28+
"publish": "yes",
29+
"registry": "not-a-url"
30+
},
31+
"plugins": {
32+
"": "invalid"
33+
},
34+
"preset": "go",
35+
"version": {
36+
"extra": true,
37+
"strategy": "invalid"
38+
}
39+
}

0 commit comments

Comments
 (0)