Skip to content

Commit

Permalink
disable more errors I don't care about
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Dec 27, 2023
1 parent c7df623 commit 11f51bf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions flow/.golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,18 @@ linters:
- exhaustivestruct
- funlen
- gocognit
- gocyclo
- godot
- godox
- golint # deprecated in favor of revive
- gomnd
- ifacebloat
- nestif
- nosnakecase
- paralleltest
- tagliatelle
- testpackage
- varnamelen
- wrapcheck
- wsl
linters-settings:
Expand Down
2 changes: 1 addition & 1 deletion flow/connectors/snowflake/avro_file_writer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func createQValue(t *testing.T, kind qvalue.QValueKind, placeHolder int) qvalue.
}
}

// nolint:unparam
//nolint:unparam
func generateRecords(
t *testing.T,
nullable bool,
Expand Down
2 changes: 1 addition & 1 deletion flow/e2e/snowflake/qrep_flow_sf_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/stretchr/testify/require"
)

// nolint:unparam
//nolint:unparam
func (s PeerFlowE2ETestSuiteSF) setupSourceTable(tableName string, numRows int) {
err := e2e.CreateTableForQRep(s.pool, s.pgSuffix, tableName)
require.NoError(s.t, err)
Expand Down

0 comments on commit 11f51bf

Please sign in to comment.