Merged in feature/lint (pull request #87)

Basic Lint Checks

* basic
This commit is contained in:
Michael McGuinness
2025-03-05 12:05:46 +00:00
parent 1232ed528f
commit 0815cb35fb
229 changed files with 487 additions and 193 deletions
+3 -2
View File
@@ -5,10 +5,11 @@ import (
"encoding/json"
"errors"
"fmt"
"strings"
"queryorchestration/internal/database"
resultprocessor "queryorchestration/internal/query/result/processor"
"queryorchestration/internal/validation"
"strings"
"github.com/google/uuid"
)
@@ -41,7 +42,7 @@ func (s *Service) NormalizeConfig(config Config) error {
prettyJSON, err := json.Marshal(data)
if err != nil {
return fmt.Errorf("error marshalling JSON: %s", err)
return fmt.Errorf("error marshaling JSON: %s", err)
}
strJSON := string(prettyJSON)