-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[plugins] Use reflikes for plugins #1845
Merged
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
1ef5d29
[plugins] Unify plugin config and devbox config
mikeland73 6386016
Update readme -> description
mikeland73 8fa019e
Fix tests
mikeland73 b98ab45
Update lockfile
mikeland73 511bcbb
Bump timout
mikeland73 e67d8e6
Bump timout to 10s
mikeland73 1239bcc
Revert
mikeland73 b7eec16
Change port for lapp
mikeland73 100a77f
Revert "Change port for lapp"
mikeland73 8866689
Merge branch 'main' into landau/plugins-unify
mikeland73 d8bb837
Merge branch 'main' into landau/plugins-unify
mikeland73 f8404d9
Merge branch 'main' into landau/plugins-unify
mikeland73 a7d0dbe
Fix
mikeland73 5e804f2
Merge branch 'main' into landau/plugins-unify
mikeland73 275fd49
[plugins] Use reflikes for plugins
mikeland73 dd716a7
Fix lint issue
mikeland73 8aaec6b
fix builtins
mikeland73 908f9a8
Merge branch 'main' into landau/shift-plugins-to-config
mikeland73 8f7d329
Merge branch 'main' into landau/shift-plugins-to-config
mikeland73 1bf645a
Use cmp.Or
mikeland73 3261194
Requested changes, add test
mikeland73 cfa1b15
More testability
mikeland73 8a6f071
Merge branch 'main' into landau/shift-plugins-to-config
mikeland73 c4c31c2
Fix test
mikeland73 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix lint issue
- Loading branch information
commit dd716a77953a234e85aee707ac5c1044914e9504
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of embedding the struct, could we make it an explicit field to distinguish methods/fields that are from RefLike versus native to
githubPlugin
?But its tolerable if it means having to re-implement a lot of methods unnecessarily
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can make that change. It does mean that
plugin.Repo
becomesplugin.ref.Repo
so the code is a big uglier. (There's roughly 12 callsites in this file that would change)