Skip to content

Commit

Permalink
fixup! engine: Allow signals output file names to be configured
Browse files Browse the repository at this point in the history
  • Loading branch information
cassava committed Nov 14, 2023
1 parent 8d151dd commit 16a7365
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions engine/tests/test_engine_json_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,30 @@
}
]
},
"signals": {
"description": "file to store signals in",
"oneOf": [
{
"type": "null"
},
{
"comment": "path should either not exist or be a file",
"type": "string"
}
]
},
"signals_autocompletion": {
"description": "file to store signal autocompletion in",
"oneOf": [
{
"type": "null"
},
{
"comment": "path should either not exist or be a file",
"type": "string"
}
]
},
"triggers": {
"description": "file to store triggers in",
"oneOf": [
Expand Down

0 comments on commit 16a7365

Please sign in to comment.