Adds missing trailing newlines, fixes indentation alignment, removes
extra blank lines, and corrects import ordering. Fixes CI qa format
check failures blocking all open PRs.
Files fixed:
- pkg/rag/{ingest,ollama,qdrant,query}.go (missing trailing newline)
- internal/cmd/rag/cmd_ingest.go (extra blank lines)
- internal/cmd/security/cmd_jobs.go (var alignment)
- internal/cmd/security/cmd_security.go (extra blank line)
- internal/core-ide/claude_bridge.go (indentation)
- internal/variants/core_ide.go (import ordering)
- pkg/ansible/{modules,ssh}.go (whitespace)
- pkg/build/buildcmd/cmd_release.go (var alignment)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
682 B
Go
25 lines
682 B
Go
//go:build ide
|
|
|
|
// core_ide.go imports packages for the Core IDE desktop application.
|
|
//
|
|
// Build with: go build -tags ide
|
|
//
|
|
// This is the Wails v3 GUI variant featuring:
|
|
// - System tray with quick actions
|
|
// - Tray panel for status/notifications
|
|
// - Angular frontend
|
|
// - All CLI commands available via IPC
|
|
|
|
package variants
|
|
|
|
import (
|
|
// Core IDE GUI
|
|
_ "github.com/host-uk/core/internal/core-ide"
|
|
|
|
// CLI commands available via IPC
|
|
_ "github.com/host-uk/core/internal/cmd/ai"
|
|
_ "github.com/host-uk/core/internal/cmd/deploy"
|
|
_ "github.com/host-uk/core/internal/cmd/dev"
|
|
_ "github.com/host-uk/core/internal/cmd/php"
|
|
_ "github.com/host-uk/core/internal/cmd/rag"
|
|
)
|