1
0
mirror of https://github.com/go-task/task.git synced 2025-11-23 22:24:45 +02:00

feat: add experiments to taskrc.yml schema (#2235)

This commit is contained in:
Valentin Maerten
2025-08-16 10:54:47 +02:00
committed by GitHub
parent 1fda55910e
commit 9495fb2b1c

View File

@@ -6,8 +6,19 @@
"properties": { "properties": {
"experiments": { "experiments": {
"type": "object", "type": "object",
"additionalProperties": { "properties": {
"type": "integer" "ENV_PRECEDENCE": {
"type": "number",
"enum": [0, 1]
},
"REMOTE_TASKFILES": {
"type": "number",
"enum": [0, 1]
},
"GENTLE_FORCE": {
"type": "number",
"enum": [0, 1]
}
} }
} }
}, },