Go plugin vs Module plugin #5807
-
Just curious, which of these options is recommended? It seems like the go plugins method is architecture specific- is the module method not? I want to pick whichever option will be easier to setup in ci / for others to setup on their dev environments P.S. I was a bit confused by the documentation for these (didn't realize they were different options until I saw linters.settings.custom type reference said it could be "module" or "goplugin"). Maybe it could use a bit more detail |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello,
I recommend using References: |
Beta Was this translation helpful? Give feedback.
Hello,
goplugin
is more complex to use because:module
is easier to use:custom
and a build configuration.goplugin
was the first plugin system inside golangci-lint, but the constraints to use it drove us to create themodule
plugin system.I recommend using
module
.References: