Skip to content

Commit 7aee8ff

Browse files
feat(rumdl): update schema to v0.1.24 (SchemaStore#5388)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 638f7ee commit 7aee8ff

1 file changed

Lines changed: 21 additions & 42 deletions

File tree

src/schemas/json/rumdl.json

Lines changed: 21 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
"default": {
1212
"enable": [],
1313
"disable": [],
14-
"extend-enable": [],
15-
"extend-disable": [],
1614
"exclude": [],
1715
"include": [],
1816
"respect-gitignore": true,
@@ -21,7 +19,9 @@
2119
"unfixable": [],
2220
"flavor": "standard",
2321
"force-exclude": false,
24-
"cache": true
22+
"cache": true,
23+
"extend-enable": [],
24+
"extend-disable": []
2525
}
2626
},
2727
"per-file-ignores": {
@@ -83,22 +83,6 @@
8383
},
8484
"default": []
8585
},
86-
"extend-enable": {
87-
"description": "Additional rules to enable on top of the base set (additive across config levels)",
88-
"type": "array",
89-
"items": {
90-
"type": "string"
91-
},
92-
"default": []
93-
},
94-
"extend-disable": {
95-
"description": "Additional rules to disable on top of the base set (additive across config levels)",
96-
"type": "array",
97-
"items": {
98-
"type": "string"
99-
},
100-
"default": []
101-
},
10286
"exclude": {
10387
"description": "Files to exclude",
10488
"type": "array",
@@ -126,29 +110,8 @@
126110
"default": 80
127111
},
128112
"output-format": {
129-
"description": "Output format for linting results",
130-
"oneOf": [
131-
{
132-
"type": "string",
133-
"enum": [
134-
"text",
135-
"full",
136-
"concise",
137-
"grouped",
138-
"json",
139-
"json-lines",
140-
"github",
141-
"gitlab",
142-
"pylint",
143-
"azure",
144-
"sarif",
145-
"junit"
146-
]
147-
},
148-
{
149-
"type": "null"
150-
}
151-
]
113+
"description": "Output format for linting results (e.g., \"text\", \"json\", \"pylint\", etc.)",
114+
"type": ["string", "null"]
152115
},
153116
"fixable": {
154117
"description": "Rules that are allowed to be fixed when --fix is used\nIf specified, only these rules will be fixed",
@@ -185,6 +148,22 @@
185148
"description": "Whether caching is enabled (default: true)\nCan also be disabled via --no-cache CLI flag",
186149
"type": "boolean",
187150
"default": true
151+
},
152+
"extend-enable": {
153+
"description": "Additional rules to enable on top of the base set (additive)",
154+
"type": "array",
155+
"items": {
156+
"type": "string"
157+
},
158+
"default": []
159+
},
160+
"extend-disable": {
161+
"description": "Additional rules to disable on top of the base set (additive)",
162+
"type": "array",
163+
"items": {
164+
"type": "string"
165+
},
166+
"default": []
188167
}
189168
}
190169
},

0 commit comments

Comments
 (0)