Fix linting issues in manifest.go and plugin_test.go

- Add blank line before return statement in manifest.go
- Fix table formatting alignment in plugin_test.go

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Felipe M 2025-07-14 19:19:11 +02:00
parent 278958d1e4
commit 03c521f237
No known key found for this signature in database
GPG key ID: 52E5D65FCF99808A
2 changed files with 41 additions and 40 deletions

View file

@ -44,6 +44,7 @@ func RunManifestCommand(args []string, pluginPath string) error {
case "check":
if err := manifest.IsValid(); err != nil {
Logger.Error("Plugin manifest validation failed", "error", err)
return err
}
Logger.Info("Plugin manifest is valid")