You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rely on line position for configuration makes it hard to read and write the file and is fragile. This also makes impossible to add comments to the config.
The recommended approach usually is to use a key-value implementation (.json for Javascript or .properties for Java). Javascript has native support for .json, which makes it the natural choice.
Related to #3 .
Rely on line position for configuration makes it hard to read and write the file and is fragile. This also makes impossible to add comments to the config.
The recommended approach usually is to use a key-value implementation (.json for Javascript or .properties for Java). Javascript has native support for .json, which makes it the natural choice.
Kyrix/compiler/src/index.js
Lines 23 to 30 in 0ce6879
Splitting the configuration of the compiler and the back-end and using .json + Config Module seems a good option.
The text was updated successfully, but these errors were encountered: