Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: set 'value: ' for flag arguments #124

Merged
merged 1 commit into from
Jun 21, 2024
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
10 changes: 5 additions & 5 deletions tooling.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"type": "positional", "description": "Pick out and massage parameters", "value": "rev-parse", "selectable": false
},
{
"type": "optional", "description": "Current working directory is inside the repository's work directory?", "option": "--is-inside-work-tree", "selectable": false
"type": "optional", "description": "Current working directory is inside the repository's work directory?", "option": "--is-inside-work-tree", "value": "", "selectable": false
}
],
"reporting": {
Expand Down Expand Up @@ -284,7 +284,7 @@
"type": "optional", "description": "report only issues of a given severity level or higher", "option": "--severity-level", "value": ["high", "all", "low", "medium"], "format": "array", "selectable": true, "repeatable": false
},
{
"type": "optional", "description": "find and process files in subdirectories", "option": "--recursive", "format": "string", "selectable": false, "repeatable": false
"type": "optional", "description": "find and process files in subdirectories", "option": "--recursive", "value": "", "format": "string", "selectable": false, "repeatable": false
},
{
"type": "positional", "description": "source file(s) or directory(s) to be tested", "value": ".", "format": "string", "selectable": true, "repeatable": true
Expand Down Expand Up @@ -434,7 +434,7 @@
"type": "optional", "format": "string", "description": "Confidence level", "option": "--confidence", "value": "60", "selectable": false, "repeatable": false
},
{
"type": "optional", "description": "JSON output", "option": "--json", "selectable": false
"type": "optional", "description": "JSON output", "option": "--json", "value": "", "selectable": false
}
],
"reporting": {
Expand Down Expand Up @@ -464,7 +464,7 @@
"executable": "cffconvert",
"args": [
{
"type": "optional", "description": "Validate the CITATION.cff file", "option": "--validate", "selectable": false
"type": "optional", "description": "Validate the CITATION.cff file", "option": "--validate", "value": "", "selectable": false
}
],
"reporting": {
Expand Down Expand Up @@ -515,7 +515,7 @@
"executable": "mdl",
"args": [
{
"type": "optional", "description": "JSON output", "option": "--json", "selectable": false
"type": "optional", "description": "JSON output", "option": "--json", "value": "", "selectable": false
},
{
"type": "positional", "description": "Project's root path", "value": ".", "selectable": true, "format": "string"
Expand Down
Loading