Visual studio code plugin #490
Labels
build
Tasks related to development and ci/cd
feature
New feature or request
help wanted
Extra attention is needed
We would like to have our own VS code plugin to improve developer experience.
Because we have separated the deployment model from the runtime model, VS code is not able to help the developer to determine if an import will be available at runtime. This depends on the segment configuration.
We would like to have a nice VS code plugin that can read the segment information, and help the developer by highlighting imports that won't work at runtime. When, for example, a certain function is set to
private
in the segment configuration, then VS code should show a red highlight when a function from another segment wants to import that specific function.If the configuration looks like below
We would like to have a red highlight for the following import
But it should not highlight the import for any function that is in the same segment.
In case of
protected
access, some sort of warning highlight would be nice. This should help the developer understand that the function is only available from any server that has a trust key configured.The text was updated successfully, but these errors were encountered: