Compare commits

..

No commits in common. "d24334964092dcd01b9da361a1db2dc8461a27db" and "9eccdccc5c17037cd58521a148ea69140b7d1cd4" have entirely different histories.

2 changed files with 5 additions and 9 deletions

View file

@ -7,7 +7,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: stable
- uses: https://github.com/golangci/golangci-lint-action@v6
- uses: https://github.com/golangci/golangci-lint-action@v4
tests:
runs-on: docker
steps:

View file

@ -14,10 +14,6 @@ import (
"gopkg.in/yaml.v3"
)
func parseError(err error) error {
return fmt.Errorf("cannot parse config file: %w", err)
}
type filetype int
const (
@ -83,7 +79,7 @@ func marshal(ft filetype, v any) ([]byte, error) {
func unmarshalJSON(data []byte, v any) error {
err := json.Unmarshal(data, v)
if err != nil {
return parseError(err)
return fmt.Errorf("cannot parse config file: %w", err)
}
return nil
@ -103,7 +99,7 @@ func marshalJSON(v any) ([]byte, error) {
func unmarshalTOML(data []byte, v any) error {
err := toml.Unmarshal(data, v)
if err != nil {
return parseError(err)
return fmt.Errorf("cannot parse config file: %w", err)
}
return nil
@ -129,7 +125,7 @@ func unmarshalHCL(filepath string, data []byte, v any) error {
newDiags := hclFilterDiagnostics(diags)
if len(newDiags) > 0 {
return parseError(newDiags)
return fmt.Errorf("cannot parse config file: %w", newDiags)
}
return nil
@ -163,7 +159,7 @@ func hclFilterDiagnostics(diags hcl.Diagnostics) hcl.Diagnostics {
func unmarshalYAML(data []byte, v any) error {
err := yaml.Unmarshal(data, v)
if err != nil {
return parseError(err)
return fmt.Errorf("cannot parse config file: %w", err)
}
return nil