* Terminal repo-fetch failure: GitHub deterministically refuses to serve the * archive (repo deleted/private/DMCA'd, or larger than our scan budget). * Re-fetching won't change the answer, so the scan resolves to a * "suspicious / manual review" verdict instead of retrying. Anything else * throw
| 61 | * cursor/community-plugins#395). |
| 62 | */ |
| 63 | class UnscannableRepoError extends Error { |
| 64 | constructor(message: string) { |
| 65 | super(message); |
| 66 | this.name = "UnscannableRepoError"; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | type ComponentRow = Pick< |
| 71 | PluginComponent, |
nothing calls this directly
no outgoing calls
no test coverage detected