Skip to content

Commit 609273b

Browse files
committed
massive goimports fix
1 parent a289458 commit 609273b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+204
-91
lines changed

.githooks/go-lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
devbox run lint
2+
devbox run lint-all

.githooks/goimports

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
devbox run goimports-all

framework/chaos/chaos.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ import (
99
"github.com/docker/docker/api/types/container"
1010
"github.com/docker/docker/api/types/mount"
1111
"github.com/google/uuid"
12-
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1312
"github.com/testcontainers/testcontainers-go"
13+
14+
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1415
)
1516

1617
// ExecPumba executes Pumba (https://github.com/alexei-led/pumba) command

framework/clclient/client.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import (
1515
"github.com/ethereum/go-ethereum/accounts/keystore"
1616
"github.com/ethereum/go-ethereum/crypto"
1717
"github.com/pkg/errors"
18+
1819
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1920
"github.com/smartcontractkit/chainlink-testing-framework/framework/components/clnode"
2021

framework/cmd/ci.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ import (
1818
"github.com/fatih/color"
1919
"github.com/google/go-github/v50/github"
2020
"github.com/google/uuid"
21-
"github.com/smartcontractkit/chainlink-testing-framework/framework"
2221
"golang.org/x/oauth2"
22+
23+
"github.com/smartcontractkit/chainlink-testing-framework/framework"
2324
)
2425

2526
const (

framework/cmd/docker.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"os/exec"
77

88
"github.com/rs/zerolog"
9+
910
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1011
)
1112

framework/cmd/interactive.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99

1010
"github.com/charmbracelet/huh"
1111
"github.com/charmbracelet/huh/spinner"
12+
1213
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1314
"github.com/smartcontractkit/chainlink-testing-framework/framework/components/blockchain"
1415
"github.com/smartcontractkit/chainlink-testing-framework/framework/components/clnode"

framework/cmd/logs.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import (
1414
"time"
1515

1616
"github.com/pkg/errors"
17+
1718
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1819

1920
"go.uber.org/ratelimit"

framework/cmd/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ import (
1010
"strings"
1111

1212
"github.com/pelletier/go-toml"
13-
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1413
"github.com/urfave/cli/v2"
14+
15+
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1516
)
1617

1718
//go:embed observability/*

framework/cmd/observability.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ import (
66

77
"github.com/google/uuid"
88
"github.com/pkg/errors"
9-
"github.com/smartcontractkit/chainlink-testing-framework/framework"
109
"go.uber.org/ratelimit"
10+
11+
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1112
)
1213

1314
func loadLogs(rawURL, dirPath string, rps, chunks int) error {

0 commit comments

Comments
 (0)