Preparing report...

Report for github.com/gruntwork-io/go-commons

A    Great!    Found 42 issues across 37 files

Tweet

gofmt78%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command


go_vet100%

go vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.

No problems detected. Good job!


gocyclo100%

Gocyclo calculates cyclomatic complexities of functions in Go source code. The cyclomatic complexity of a function is calculated according to the following rules: 1 is the base complexity of a function +1 for each 'if', 'for', 'case', '&&' or '||' Go Report Card warns on functions with cyclomatic complexity > 15.

No problems detected. Good job!


golint48%

Golint is a linter for Go source code.

    • go-commons/random/random.go
    • Line 10: warning: comment on exported const Digits should be of the form "Digits ..." (golint)
    • Line 12: warning: exported const UpperLetters should have comment or be unexported (golint)
    • Line 13: warning: exported const LowerLetters should have comment or be unexported (golint)
    • Line 14: warning: exported const SpecialChars should have comment or be unexported (golint)
    • Line 16: warning: exported var Base62Chars should have comment or be unexported (golint)
    • go-commons/entrypoint/help_utils.go
    • Line 14: warning: comment on exported var HelpTextLineWidth should be of the form "HelpTextLineWidth ..." (golint)
    • Line 17: warning: comment on exported const CLI_APP_HELP_TEMPLATE should be of the form "CLI_APP_HELP_TEMPLATE ..." (golint)
    • Line 29: warning: comment on exported const CLI_COMMAND_HELP_TEMPLATE should be of the form "CLI_COMMAND_HELP_TEMPLATE ..." (golint)
    • Line 41: warning: comment on exported function WrappedHelpPrinter should be of the form "WrappedHelpPrinter ..." (golint)
    • Line 67: warning: comment on exported function RegexpSplitAfter should be of the form "RegexpSplitAfter ..." (golint)
    • Line 92: warning: comment on exported function IndentAwareWrapText should be of the form "IndentAwareWrapText ..." (golint)
    • Line 138: warning: exported function TabAwareStringLength should have comment or be unexported (golint)
    • Line 142: warning: comment on exported function HelpTableAwareDetermineIndent should be of the form "HelpTableAwareDetermineIndent ..." (golint)
    • Line 162: warning: exported function PrefixedFirstFlagName should have comment or be unexported (golint)
    • Line 168: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • go-commons/shell/cmd.go
    • Line 14: warning: comment on exported function RunShellCommand should be of the form "RunShellCommand ..." (golint)
    • Line 30: warning: comment on exported function RunShellCommandAndGetOutput should be of the form "RunShellCommandAndGetOutput ..." (golint)
    • Line 43: warning: comment on exported function RunShellCommandAndGetAndStreamOutput should be of the form "RunShellCommandAndGetAndStreamOutput ..." (golint)
    • Line 82: warning: comment on exported function RunShellCommandAndGetStdout should be of the form "RunShellCommandAndGetStdout ..." (golint)
    • Line 95: warning: comment on exported function RunShellCommandAndGetStdoutAndStreamOutput should be of the form "RunShellCommandAndGetStdoutAndStreamOutput ..." (golint)
    • Line 184: warning: comment on exported function CommandInstalled should be of the form "CommandInstalled ..." (golint)
    • go-commons/shell/prompt.go
    • Line 16: warning: exported var BRIGHT_GREEN should have comment or be unexported (golint)
    • Line 18: warning: comment on exported function PromptUserForInput should be of the form "PromptUserForInput ..." (golint)
    • Line 23: warning: exported function FPromptUserForInput should have comment or be unexported (golint)
    • Line 42: warning: comment on exported function PromptUserForYesNo should be of the form "PromptUserForYesNo ..." (golint)
    • Line 47: warning: exported function FPromptUserForYesNo should have comment or be unexported (golint)
    • Line 62: warning: comment on exported function PromptUserForPassword should be of the form "PromptUserForPassword ..." (golint)
    • Line 80: warning: error var NonInteractivePasswordPrompt should have name of the form ErrFoo (golint)
    • Line 80: warning: exported var NonInteractivePasswordPrompt should have comment or be unexported (golint)
    • go-commons/ssh/agent.go
    • Line 29: warning: comment on exported function NewSSHAgent should be of the form "NewSSHAgent ..." (golint)
    • Line 48: warning: comment on exported method SSHAgent.SocketFile should be of the form "SocketFile ..." (golint)
    • Line 96: warning: comment on exported function SSHAgentWithPrivateKey should be of the form "SSHAgentWithPrivateKey ..." (golint)
    • Line 103: warning: comment on exported function SSHAgentWithPrivateKeys should be of the form "SSHAgentWithPrivateKeys ..." (golint)
    • go-commons/errors/errors.go
    • Line 10: warning: comment on exported type ErrorWithExitCode should be of the form "ErrorWithExitCode ..." (with optional leading article) (golint)
    • Line 20: warning: comment on exported function WithStackTrace should be of the form "WithStackTrace ..." (golint)
    • Line 30: warning: comment on exported function WithStackTraceAndPrefix should be of the form "WithStackTraceAndPrefix ..." (golint)
    • Line 41: warning: comment on exported function IsError should be of the form "IsError ..." (golint)
    • Line 47: warning: comment on exported function Unwrap should be of the form "Unwrap ..." (golint)
    • Line 62: warning: comment on exported function PrintErrorWithStackTrace should be of the form "PrintErrorWithStackTrace ..." (golint)
    • Line 76: warning: comment on exported function Recover should be of the form "Recover ..." (golint)
    • Line 88: warning: comment on exported function WithPanicHandling should be of the form "WithPanicHandling ..." (golint)
    • go-commons/collections/lists.go
    • Line 3: warning: comment on exported function ListContainsElement should be of the form "ListContainsElement ..." (golint)
    • Line 14: warning: comment on exported function RemoveElementFromList should be of the form "RemoveElementFromList ..." (golint)
    • go-commons/files/files.go
    • Line 9: warning: comment on exported function FileExists should be of the form "FileExists ..." (golint)
    • Line 15: warning: comment on exported function IsDir should be of the form "IsDir ..." (golint)
    • Line 21: warning: comment on exported function ReadFileAsString should be of the form "ReadFileAsString ..." (golint)
    • Line 31: warning: comment on exported function CopyFile should be of the form "CopyFile ..." (golint)
    • Line 41: warning: comment on exported function WriteFileWithSamePermissions should be of the form "WriteFileWithSamePermissions ..." (golint)
    • go-commons/version/version.go
    • Line 12: warning: exported var Version should have comment or be unexported (golint)
    • Line 15: warning: comment on exported function GetVersion should be of the form "GetVersion ..." (golint)
    • go-commons/logging/logging.go
    • Line 12: warning: comment on exported function GetLogger should be of the form "GetLogger ..." (golint)
    • Line 28: warning: comment on exported function SetGlobalLogLevel should be of the form "SetGlobalLogLevel ..." (golint)
    • go-commons/collections/maps.go
    • Line 5: warning: comment on exported function MergeMaps should be of the form "MergeMaps ..." (golint)
    • Line 18: warning: comment on exported function Keys should be of the form "Keys ..." (golint)
    • Line 22: warning: should omit 2nd value from range; this loop is equivalent to `for key := range ...` (golint)
    • go-commons/shell/options.go
    • Line 8: warning: exported type ShellOptions should have comment or be unexported (golint)
    • Line 16: warning: exported function NewShellOptions should have comment or be unexported (golint)
    • go-commons/ssh/options.go
    • Line 60: warning: receiver name h should be consistent with previous receiver name host for Host (golint)
    • Line 65: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 143: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 150: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • go-commons/files/paths.go
    • Line 11: warning: comment on exported function CanonicalPath should be of the form "CanonicalPath ..." (golint)
    • Line 25: warning: comment on exported function CanonicalPaths should be of the form "CanonicalPaths ..." (golint)
    • Line 42: warning: comment on exported function Grep should be of the form "Grep ..." (golint)
    • Line 69: warning: comment on exported function GetPathRelativeTo should be of the form "GetPathRelativeTo ..." (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign48%

IneffAssign detects ineffectual assignments in Go code.

    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/sns.go
    • Line 5: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/service/sns (invalid package name: "") (ineffassign)
    • Line 5: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/service/sns (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/account.go
    • Line 7: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 8: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go/aws (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/service/sts (invalid package name: "") (ineffassign)
    • Line 7: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 8: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go/aws (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/service/sts (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/lambda.go
    • Line 7: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go/service/lambda (invalid package name: "") (ineffassign)
    • Line 7: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go/service/lambda (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/secretsmanager.go
    • Line 5: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/service/secretsmanager (invalid package name: "") (ineffassign)
    • Line 5: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/service/secretsmanager (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/ssm.go
    • Line 8: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/service/ssm (invalid package name: "") (ineffassign)
    • Line 8: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/service/ssm (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/cloudwatch.go
    • Line 5: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/service/cloudwatchlogs (invalid package name: "") (ineffassign)
    • Line 5: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/service/cloudwatchlogs (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/dynamodb.go
    • Line 5: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/service/dynamodb (invalid package name: "") (ineffassign)
    • Line 5: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/service/dynamodb (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/kms.go
    • Line 5: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/service/kms (invalid package name: "") (ineffassign)
    • Line 5: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/service/kms (invalid package name: "") (ineffassign)
    • go-commons/awscommons/v2/auth.go
    • Line 6: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go-v2/@v/v1.3.3.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go-v2@v1.3.3/codegen/sdk-codegen/aws-models/autoscaling.2011-01-01.json: no space left on device (ineffassign)
    • Line 7: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go-v2/@v/v1.3.3.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go-v2@v1.3.3/codegen/sdk-codegen/aws-models/autoscaling.2011-01-01.json: no space left on device (ineffassign)
    • Line 6: warning: could not import github.com/aws/aws-sdk-go-v2/aws (invalid package name: "") (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go-v2/config (invalid package name: "") (ineffassign)
    • Line 6: warning: could not import github.com/aws/aws-sdk-go-v2/aws (invalid package name: "") (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go-v2/config (invalid package name: "") (ineffassign)
    • go-commons/awscommons/v2/secretsmanager.go
    • Line 7: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go-v2/@v/v1.3.3.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go-v2@v1.3.3/codegen/sdk-codegen/aws-models/autoscaling.2011-01-01.json: no space left on device (ineffassign)
    • Line 8: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go-v2/@v/v1.3.3.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go-v2@v1.3.3/codegen/sdk-codegen/aws-models/autoscaling.2011-01-01.json: no space left on device (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go-v2/service/secretsmanager (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go-v2/service/secretsmanager/types (invalid package name: "") (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go-v2/service/secretsmanager (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go-v2/service/secretsmanager/types (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/acm.go
    • Line 4: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 4: warning: could not import github.com/aws/aws-sdk-go/service/acm (invalid package name: "") (ineffassign)
    • Line 4: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 4: warning: could not import github.com/aws/aws-sdk-go/service/acm (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/asg.go
    • Line 8: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/service/autoscaling (invalid package name: "") (ineffassign)
    • Line 8: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/service/autoscaling (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/s3.go
    • Line 9: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 10: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/service/s3 (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/aws/aws-sdk-go/service/s3/s3manager (invalid package name: "") (ineffassign)
    • Line 9: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 10: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/service/s3 (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/aws/aws-sdk-go/service/s3/s3manager (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/ecs.go
    • Line 7: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go/service/ecs (invalid package name: "") (ineffassign)
    • Line 7: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go/service/ecs (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/rds.go
    • Line 8: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/service/rds (invalid package name: "") (ineffassign)
    • Line 8: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/service/rds (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/sqs.go
    • Line 9: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/service/sqs (invalid package name: "") (ineffassign)
    • Line 9: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/service/sqs (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/auth.go
    • Line 9: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 10: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 11: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 12: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/aws/credentials (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/aws/aws-sdk-go/aws/credentials/stscreds (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/aws/aws-sdk-go/aws/session (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/aws/aws-sdk-go/service/iam (invalid package name: "") (ineffassign)
    • Line 9: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 10: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 11: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 12: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/aws/credentials (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/aws/aws-sdk-go/aws/credentials/stscreds (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/aws/aws-sdk-go/aws/session (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/aws/aws-sdk-go/service/iam (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/ami.go
    • Line 9: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/service/ec2 (invalid package name: "") (ineffassign)
    • Line 9: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/service/ec2 (invalid package name: "") (ineffassign)
    • /home/shawn/go/pkg/mod/github.com/gruntwork-io/terratest@v0.32.9/modules/aws/ecr.go
    • Line 7: warning: github.com/aws/aws-sdk-go@v1.38.0: write /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip.tmp503354184: no space left on device (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go/service/ecr (invalid package name: "") (ineffassign)
    • Line 7: warning: unzip /home/shawn/go/pkg/mod/cache/download/github.com/aws/aws-sdk-go/@v/v1.38.0.zip: write /home/shawn/go/pkg/mod/github.com/aws/aws-sdk-go@v1.38.0/aws/request/request_resetbody_test.go: no space left on device (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go/service/ecr (invalid package name: "") (ineffassign)

misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!