feat: added mise module (#5747)

This commit is contained in:
Andrew Pantuso
2025-04-26 16:15:30 -04:00
committed by GitHub
parent 7e88ba9561
commit d24e78754a
8 changed files with 311 additions and 0 deletions
+83
View File
@@ -974,6 +974,31 @@
}
]
},
"mise": {
"default": {
"detect_extensions": [],
"detect_files": [
"mise.toml",
"mise.local.toml",
".mise.toml",
".mise.local.toml"
],
"detect_folders": [
".mise"
],
"disabled": true,
"format": "[$symbol$health]($style) ",
"healthy_symbol": "healthy",
"style": "bold purple",
"symbol": "mise ",
"unhealthy_symbol": "unhealthy"
},
"allOf": [
{
"$ref": "#/definitions/MiseConfig"
}
]
},
"mojo": {
"default": {
"detect_extensions": ["mojo", "🔥"],
@@ -4288,6 +4313,64 @@
},
"additionalProperties": false
},
"MiseConfig": {
"type": "object",
"properties": {
"format": {
"default": "[$symbol$health]($style) ",
"type": "string"
},
"symbol": {
"default": "mise ",
"type": "string"
},
"style": {
"default": "bold purple",
"type": "string"
},
"disabled": {
"default": true,
"type": "boolean"
},
"detect_extensions": {
"default": [],
"type": "array",
"items": {
"type": "string"
}
},
"detect_files": {
"default": [
"mise.toml",
"mise.local.toml",
".mise.toml",
".mise.local.toml"
],
"type": "array",
"items": {
"type": "string"
}
},
"detect_folders": {
"default": [
".mise"
],
"type": "array",
"items": {
"type": "string"
}
},
"healthy_symbol": {
"default": "healthy",
"type": "string"
},
"unhealthy_symbol": {
"default": "unhealthy",
"type": "string"
}
},
"additionalProperties": false
},
"MojoConfig": {
"type": "object",
"properties": {