Skip to content

docs: note about plugin system #5822

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

Merged
merged 1 commit into from
May 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/docs/contributing/new-linters.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ Typically, these linters can't be open-sourced or too specific.

Such linters can be added through 2 plugin systems:

1. [Module Plugin System](/plugins/module-plugins)
1. [Module Plugin System](/plugins/module-plugins) (Recommended)
2. [Go Plugin System](/plugins/go-plugins)
4 changes: 4 additions & 0 deletions docs/src/docs/plugins/go-plugins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
title: Go Plugin System
---

**We recommend using [Module Plugin System](/plugins/module-plugins) instead of the Go Plugin System.**

---

Private linters can be added through [Go's plugin system](https://pkg.go.dev/plugin).

For a private linter (which acts as a plugin) to work properly,
Expand Down
Loading