Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 21 additions & 42 deletions src/schemas/json/rumdl.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
"default": {
"enable": [],
"disable": [],
"extend-enable": [],
"extend-disable": [],
"exclude": [],
"include": [],
"respect-gitignore": true,
Expand All @@ -21,7 +19,9 @@
"unfixable": [],
"flavor": "standard",
"force-exclude": false,
"cache": true
"cache": true,
"extend-enable": [],
"extend-disable": []
}
},
"per-file-ignores": {
Expand Down Expand Up @@ -83,22 +83,6 @@
},
"default": []
},
"extend-enable": {
"description": "Additional rules to enable on top of the base set (additive across config levels)",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"extend-disable": {
"description": "Additional rules to disable on top of the base set (additive across config levels)",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"exclude": {
"description": "Files to exclude",
"type": "array",
Expand Down Expand Up @@ -126,29 +110,8 @@
"default": 80
},
"output-format": {
"description": "Output format for linting results",
"oneOf": [
{
"type": "string",
"enum": [
"text",
"full",
"concise",
"grouped",
"json",
"json-lines",
"github",
"gitlab",
"pylint",
"azure",
"sarif",
"junit"
]
},
{
"type": "null"
}
]
"description": "Output format for linting results (e.g., \"text\", \"json\", \"pylint\", etc.)",
"type": ["string", "null"]
},
"fixable": {
"description": "Rules that are allowed to be fixed when --fix is used\nIf specified, only these rules will be fixed",
Expand Down Expand Up @@ -185,6 +148,22 @@
"description": "Whether caching is enabled (default: true)\nCan also be disabled via --no-cache CLI flag",
"type": "boolean",
"default": true
},
"extend-enable": {
"description": "Additional rules to enable on top of the base set (additive)",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"extend-disable": {
"description": "Additional rules to disable on top of the base set (additive)",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
}
},
Expand Down