diff --git a/.codespellrc b/.codespellrc index a76a049f6..f653d51a3 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,4 +1,4 @@ [codespell] -skip = *.pb.*,*.sum,go.mod,./internal +skip = *.pb.*,*.sum,go.mod quiet-level = 2 ignore-words = .github/workflows/spell-check-ignore.txt \ No newline at end of file diff --git a/.github/workflows/spell-check-ignore.txt b/.github/workflows/spell-check-ignore.txt index 1a22196e0..b1c15fa54 100644 --- a/.github/workflows/spell-check-ignore.txt +++ b/.github/workflows/spell-check-ignore.txt @@ -1 +1,2 @@ -crate \ No newline at end of file +crate +pres \ No newline at end of file diff --git a/internal/blockdb/tui/update_test.go b/internal/blockdb/tui/update_test.go index 4cff91cf6..2a6169b80 100644 --- a/internal/blockdb/tui/update_test.go +++ b/internal/blockdb/tui/update_test.go @@ -209,9 +209,9 @@ func TestModel_Update(t *testing.T) { update(runeKey('c')) - _, primative := model.mainContentView().GetFrontPage() + _, primitive := model.mainContentView().GetFrontPage() // TODO (nix - 6/22/22) Can't get text from a tview.Modal. We could use a tview.TextView but it does not render // properly with the nested flex views. - require.IsType(t, &tview.Modal{}, primative.(*tview.Flex).GetItem(1).(*tview.Flex).GetItem(1)) + require.IsType(t, &tview.Modal{}, primitive.(*tview.Flex).GetItem(1).(*tview.Flex).GetItem(1)) }) } diff --git a/internal/dockerutil/setup.go b/internal/dockerutil/setup.go index 517e1503b..eefbfebfa 100644 --- a/internal/dockerutil/setup.go +++ b/internal/dockerutil/setup.go @@ -30,7 +30,7 @@ type DockerSetupTestingT interface { // CleanupLabel is a docker label key targeted by DockerSetup when it cleans up docker resources. // -// "interchaintest" is perhaps a better name. However, for backwards compatability we preserve the original name of "ibc-test" +// "interchaintest" is perhaps a better name. However, for backwards compatibility we preserve the original name of "ibc-test" // with the hyphen. Otherwise, we run the risk of causing "container already exists" errors because DockerSetup // is unable to clean old resources from docker engine. const CleanupLabel = "ibc-test" @@ -93,7 +93,7 @@ func dockerCleanup(t DockerSetupTestingT, cli *client.Client) func() { return func() { showContainerLogs := os.Getenv("SHOW_CONTAINER_LOGS") containerLogTail := os.Getenv("CONTAINER_LOG_TAIL") - keepContainers := os.Getenv("KEEP_CONTAINERS") != "" + keepContainers := os.Getenv("KEEP_CONTAINTERS") != "" ctx := context.TODO() cli.NegotiateAPIVersion(ctx)