shanedell opened a new issue, #698:
URL: https://github.com/apache/daffodil-vscode/issues/698
Fix the `package.json` to no longer make a new variable for item that would
be in an object variables hierarchy. Instead create one default variable that
sets all hierarchy related variabes.
For example:
Data Editor variables to remove
```json
"dataEditorPort": {
"type": "integer",
"description": "Editor server default port",
"default": 9000
},
"dataEditorLogFile": {
"type": "string",
"description": "Path to log file for data editor",
"default": "${workspaceFolder}/dataEditor-${omegaEditPort}.log"
},
"dataEditorLogLevel": {
"type": "string",
"description": "Log level for data editor",
"enum": [
"error",
"warn",
"info",
"debug",
"trace"
],
"default": "info"
},
```
Data Editor variable to make:
```json
"dataEditor": {
"type": "object",
"description": "Configuration for Data Editor. Settings are port, logFile
and logLevel",
"default": {
"port": 9000,
"logFile": "${workspaceFolder}/dataEditor-${omegaEditPort}.log",
"logLevel": "info"
}
},
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]