Preparing report...

Report for github.com/coldbrewcloud/coldbrew-cli

A    Great!    Found 59 issues across 67 files

Tweet

gofmt100%

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

No problems detected. Good job!


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!


gocyclo86%

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.


golint22%

Golint is a linter for Go source code.

    • coldbrew-cli/aws/elb/client.go
    • Line 14: warning: exported type Client should have comment or be unexported (golint)
    • Line 18: warning: exported function New should have comment or be unexported (golint)
    • Line 24: warning: exported method Client.CreateLoadBalancer should have comment or be unexported (golint)
    • Line 45: warning: exported method Client.RetrieveLoadBalancer should have comment or be unexported (golint)
    • Line 68: warning: exported method Client.RetrieveLoadBalancerByName should have comment or be unexported (golint)
    • Line 91: warning: exported method Client.RetrieveLoadBalancerListeners should have comment or be unexported (golint)
    • Line 120: warning: exported method Client.DeleteLoadBalancer should have comment or be unexported (golint)
    • Line 130: warning: exported method Client.CreateTargetGroup should have comment or be unexported (golint)
    • Line 159: warning: exported method Client.RetrieveTargetGroup should have comment or be unexported (golint)
    • Line 175: warning: exported method Client.UpdateTargetGroupHealthCheck should have comment or be unexported (golint)
    • Line 192: warning: exported method Client.RetrieveTargetGroupByName should have comment or be unexported (golint)
    • Line 213: warning: exported method Client.DeleteTargetGroup should have comment or be unexported (golint)
    • Line 223: warning: exported method Client.CreateListener should have comment or be unexported (golint)
    • Line 247: warning: exported method Client.CreateTags should have comment or be unexported (golint)
    • Line 265: warning: exported method Client.RetrieveTags should have comment or be unexported (golint)
    • coldbrew-cli/aws/autoscaling/client.go
    • Line 15: warning: exported type Client should have comment or be unexported (golint)
    • Line 19: warning: exported function New should have comment or be unexported (golint)
    • Line 25: warning: exported method Client.CreateLaunchConfiguration should have comment or be unexported (golint)
    • Line 48: warning: exported method Client.RetrieveLaunchConfiguration should have comment or be unexported (golint)
    • Line 65: warning: exported method Client.DeleteLaunchConfiguration should have comment or be unexported (golint)
    • Line 75: warning: exported method Client.CreateAutoScalingGroup should have comment or be unexported (golint)
    • Line 93: warning: exported method Client.RetrieveAutoScalingGroup should have comment or be unexported (golint)
    • Line 110: warning: exported method Client.UpdateAutoScalingGroupCapacity should have comment or be unexported (golint)
    • Line 126: warning: exported method Client.SetAutoScalingGroupDesiredCapacity should have comment or be unexported (golint)
    • Line 137: warning: exported method Client.DeleteAutoScalingGroup should have comment or be unexported (golint)
    • Line 148: warning: exported method Client.AddTagsToAutoScalingGroup should have comment or be unexported (golint)
    • Line 166: warning: exported method Client.RetrieveTagsForAutoScalingGroup should have comment or be unexported (golint)
    • coldbrew-cli/aws/logs/client.go
    • Line 9: warning: exported type Client should have comment or be unexported (golint)
    • Line 14: warning: exported function New should have comment or be unexported (golint)
    • Line 21: warning: exported method Client.CreateGroup should have comment or be unexported (golint)
    • Line 34: warning: exported method Client.ListGroups should have comment or be unexported (golint)
    • coldbrew-cli/aws/ecs/client.go
    • Line 13: warning: exported type Client should have comment or be unexported (golint)
    • Line 18: warning: exported function New should have comment or be unexported (golint)
    • Line 25: warning: exported method Client.RetrieveCluster should have comment or be unexported (golint)
    • Line 47: warning: exported method Client.CreateCluster should have comment or be unexported (golint)
    • Line 64: warning: exported method Client.DeleteCluster should have comment or be unexported (golint)
    • Line 74: warning: exported method Client.UpdateTaskDefinition should have comment or be unexported (golint)
    • Line 129: warning: exported method Client.RetrieveTaskDefinition should have comment or be unexported (golint)
    • Line 142: warning: exported method Client.RetrieveService should have comment or be unexported (golint)
    • Line 169: warning: exported method Client.CreateService should have comment or be unexported (golint)
    • Line 214: warning: exported method Client.UpdateService should have comment or be unexported (golint)
    • Line 244: warning: exported method Client.DeleteService should have comment or be unexported (golint)
    • Line 255: warning: exported method Client.ListServiceTaskARNs should have comment or be unexported (golint)
    • Line 285: warning: exported method Client.RetrieveTasks should have comment or be unexported (golint)
    • Line 303: warning: exported method Client.ListContainerInstanceARNs should have comment or be unexported (golint)
    • Line 332: warning: exported method Client.RetrieveContainerInstances should have comment or be unexported (golint)
    • coldbrew-cli/core/apps.go
    • Line 11: warning: exported function DefaultECSTaskDefinitionName should have comment or be unexported (golint)
    • Line 15: warning: exported function DefaultECSServiceName should have comment or be unexported (golint)
    • Line 19: warning: exported function DefaultECSTaskMainContainerName should have comment or be unexported (golint)
    • Line 23: warning: exported function DefaultAppName should have comment or be unexported (golint)
    • Line 46: warning: exported function DefaultELBLoadBalancerName should have comment or be unexported (golint)
    • Line 50: warning: exported function DefaultELBTargetGroupName should have comment or be unexported (golint)
    • Line 54: warning: exported function DefaultELBLoadBalancerSecurityGroupName should have comment or be unexported (golint)
    • Line 58: warning: exported function DefaultECRRepository should have comment or be unexported (golint)
    • Line 62: warning: exported function DefaultCloudWatchLogsGroupName should have comment or be unexported (golint)
    • coldbrew-cli/core/errors.go
    • Line 5: warning: exported type Error should have comment or be unexported (golint)
    • Line 10: warning: exported function NewError should have comment or be unexported (golint)
    • Line 17: warning: exported function NewErrorExtraInfo should have comment or be unexported (golint)
    • Line 28: warning: exported method Error.ExtraInfo should have comment or be unexported (golint)
    • Line 32: warning: exported method Error.OriginalError should have comment or be unexported (golint)
    • coldbrew-cli/aws/iam/client.go
    • Line 14: warning: exported type Client should have comment or be unexported (golint)
    • Line 18: warning: exported function New should have comment or be unexported (golint)
    • Line 24: warning: exported method Client.RetrieveRole should have comment or be unexported (golint)
    • Line 46: warning: exported method Client.CreateRole should have comment or be unexported (golint)
    • Line 68: warning: exported method Client.AttachRolePolicy should have comment or be unexported (golint)
    • Line 89: warning: exported method Client.ListRolePolicyNames should have comment or be unexported (golint)
    • Line 118: warning: exported method Client.DetachRolePolicy should have comment or be unexported (golint)
    • Line 129: warning: exported method Client.DeleteRolePolicy should have comment or be unexported (golint)
    • Line 140: warning: exported method Client.DeleteRole should have comment or be unexported (golint)
    • Line 150: warning: exported method Client.CreateInstanceProfile should have comment or be unexported (golint)
    • Line 167: warning: exported method Client.AddRoleToInstanceProfile should have comment or be unexported (golint)
    • Line 178: warning: exported method Client.RemoveRoleFromInstanceProfile should have comment or be unexported (golint)
    • Line 189: warning: exported method Client.RetrieveInstanceProfile should have comment or be unexported (golint)
    • Line 207: warning: exported method Client.DeleteInstanceProfile should have comment or be unexported (golint)
    • coldbrew-cli/exec/exec.go
    • Line 9: warning: exported type ExecCallback should have comment or be unexported (golint)
    • Line 11: warning: exported function Exec should have comment or be unexported (golint)
    • coldbrew-cli/config/validate.go
    • Line 13: warning: exported method Config.Validate should have comment or be unexported (golint)
    • Line 35: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • coldbrew-cli/console/ask.go
    • Line 9: warning: exported function AskConfirm should have comment or be unexported (golint)
    • Line 13: warning: exported function AskConfirmWithNote should have comment or be unexported (golint)
    • Line 52: warning: exported function AskQuestion should have comment or be unexported (golint)
    • Line 56: warning: exported function AskQuestionWithNote should have comment or be unexported (golint)
    • Line 77: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • coldbrew-cli/commands/deploy/command.go
    • Line 18: warning: exported type Command should have comment or be unexported (golint)
    • Line 27: warning: exported method Command.Init should have comment or be unexported (golint)
    • Line 38: warning: exported method Command.Run should have comment or be unexported (golint)
    • coldbrew-cli/docker/client.go
    • Line 10: warning: exported type Client should have comment or be unexported (golint)
    • Line 15: warning: exported function NewClient should have comment or be unexported (golint)
    • Line 22: warning: exported method Client.DockerBinAvailable should have comment or be unexported (golint)
    • Line 27: warning: exported method Client.PrintVersion should have comment or be unexported (golint)
    • Line 31: warning: exported method Client.BuildImage should have comment or be unexported (golint)
    • Line 35: warning: exported method Client.Login should have comment or be unexported (golint)
    • Line 62: warning: exported method Client.PushImage should have comment or be unexported (golint)
    • Line 66: warning: exported method Client.TagImage should have comment or be unexported (golint)
    • coldbrew-cli/aws/ec2/client.go
    • Line 15: warning: exported const SecurityGroupProtocolTCP should have comment (or a comment on this block) or be unexported (golint)
    • Line 25: warning: exported type Client should have comment or be unexported (golint)
    • Line 29: warning: exported function New should have comment or be unexported (golint)
    • Line 35: warning: exported method Client.CreateSecurityGroup should have comment or be unexported (golint)
    • Line 50: warning: exported method Client.AddInboundToSecurityGroup should have comment or be unexported (golint)
    • Line 85: warning: exported method Client.RemoveInboundToSecurityGroup should have comment or be unexported (golint)
    • Line 120: warning: exported method Client.RetrieveSecurityGroup should have comment or be unexported (golint)
    • Line 139: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 144: warning: exported method Client.RetrieveSecurityGroups should have comment or be unexported (golint)
    • Line 164: warning: exported method Client.RetrieveSecurityGroupByName should have comment or be unexported (golint)
    • Line 183: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 188: warning: exported method Client.RetrieveSecurityGroupByNameOrID should have comment or be unexported (golint)
    • Line 191: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 196: warning: exported method Client.DeleteSecurityGroup should have comment or be unexported (golint)
    • Line 206: warning: exported method Client.CreateInstances should have comment or be unexported (golint)
    • Line 228: warning: exported method Client.RetrieveVPC should have comment or be unexported (golint)
    • Line 245: warning: exported method Client.RetrieveDefaultVPC should have comment or be unexported (golint)
    • Line 267: warning: exported method Client.ListVPCs should have comment or be unexported (golint)
    • Line 283: warning: exported method Client.ListVPCSubnets should have comment or be unexported (golint)
    • Line 306: warning: exported method Client.RetrieveKeyPair should have comment or be unexported (golint)
    • Line 323: warning: exported method Client.ListKeyPairs should have comment or be unexported (golint)
    • Line 339: warning: exported method Client.CreateTags should have comment or be unexported (golint)
    • Line 357: warning: exported method Client.RetrieveTags should have comment or be unexported (golint)
    • Line 380: warning: exported method Client.RetrieveInstances should have comment or be unexported (golint)
    • Line 412: warning: exported method Client.FindImage should have comment or be unexported (golint)
    • coldbrew-cli/console/console.go
    • Line 31: warning: exported function EnablePrintf should have comment or be unexported (golint)
    • Line 39: warning: exported function EnableErrorf should have comment or be unexported (golint)
    • Line 47: warning: exported function EnableDebugf should have comment or be unexported (golint)
    • Line 57: warning: exported function Debug should have comment or be unexported (golint)
    • Line 61: warning: exported function Debugln should have comment or be unexported (golint)
    • Line 65: warning: exported function Debugf should have comment or be unexported (golint)
    • Line 68: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 74: warning: exported function ExitWithErrorString should have comment or be unexported (golint)
    • Line 78: warning: exported function ExitWithError should have comment or be unexported (golint)
    • Line 96: warning: exported function Error should have comment or be unexported (golint)
    • coldbrew-cli/console/output.go
    • Line 26: warning: exported var ColorFnHelpLink should have comment or be unexported (golint)
    • Line 62: warning: exported var MarkAdd should have comment or be unexported (golint)
    • Line 70: warning: exported function Blank should have comment or be unexported (golint)
    • Line 74: warning: exported function Info should have comment or be unexported (golint)
    • Line 78: warning: exported function DetailWithResource should have comment or be unexported (golint)
    • Line 86: warning: exported function DetailWithResourceNote should have comment or be unexported (golint)
    • Line 107: warning: exported function AddingResource should have comment or be unexported (golint)
    • Line 122: warning: exported function RemovingResource should have comment or be unexported (golint)
    • Line 136: warning: exported function UpdatingResource should have comment or be unexported (golint)
    • Line 150: warning: exported function ProcessingOnResource should have comment or be unexported (golint)
    • Line 164: warning: exported function ShellCommand should have comment or be unexported (golint)
    • Line 170: warning: exported function ShellOutput should have comment or be unexported (golint)
    • Line 174: warning: exported function ShellError should have comment or be unexported (golint)
    • coldbrew-cli/commands/delete/command.go
    • Line 23: warning: exported type Command should have comment or be unexported (golint)
    • Line 29: warning: exported method Command.Init should have comment or be unexported (golint)
    • Line 40: warning: exported method Command.Run should have comment or be unexported (golint)
    • coldbrew-cli/core/clusters.go
    • Line 8: warning: exported const EC2AssumeRolePolicy should have comment (or a comment on this block) or be unexported (golint)
    • Line 15: warning: exported function DefaultECSClusterName should have comment or be unexported (golint)
    • Line 19: warning: exported function DefaultLaunchConfigurationName should have comment or be unexported (golint)
    • Line 23: warning: exported function DefaultAutoScalingGroupName should have comment or be unexported (golint)
    • Line 27: warning: exported function DefaultInstanceProfileName should have comment or be unexported (golint)
    • Line 31: warning: exported function DefaultInstanceSecurityGroupName should have comment or be unexported (golint)
    • Line 35: warning: exported function DefaultECSServiceRoleName should have comment or be unexported (golint)
    • Line 39: warning: exported function DefaultContainerInstanceType should have comment or be unexported (golint)
    • coldbrew-cli/core/validation.go
    • Line 11: warning: exported const MaxAppUnits should have comment (or a comment on this block) or be unexported (golint)
    • Line 17: warning: exported var AppNameRE should have comment or be unexported (golint)
    • Line 31: warning: exported function ParseSizeExpression should have comment or be unexported (golint)
    • Line 57: warning: exported function ParseTimeExpression should have comment or be unexported (golint)
    • coldbrew-cli/config/config.go
    • Line 3: warning: exported type Config should have comment or be unexported (golint)
    • Line 17: warning: exported type ConfigLoadBalancer should have comment or be unexported (golint)
    • Line 24: warning: exported type ConfigLoadBalancerHealthCheck should have comment or be unexported (golint)
    • Line 33: warning: exported type ConfigLogging should have comment or be unexported (golint)
    • Line 38: warning: exported type ConfigAWS should have comment or be unexported (golint)
    • Line 46: warning: exported type ConfigDocker should have comment or be unexported (golint)
    • coldbrew-cli/commands/status/command.go
    • Line 18: warning: exported type Command should have comment or be unexported (golint)
    • Line 24: warning: exported method Command.Init should have comment or be unexported (golint)
    • Line 34: warning: exported method Command.Run should have comment or be unexported (golint)
    • Line 106: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 135: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • coldbrew-cli/utils/utils.go
    • Line 16: warning: exported function AsMap should have comment or be unexported (golint)
    • Line 30: warning: exported function ToJSON should have comment or be unexported (golint)
    • Line 38: warning: exported function IsBlank should have comment or be unexported (golint)
    • Line 42: warning: exported function FileExists should have comment or be unexported (golint)
    • Line 47: warning: exported function IsDirectory should have comment or be unexported (golint)
    • Line 55: warning: exported function RetryOnAWSErrorCode should have comment or be unexported (golint)
    • Line 71: warning: exported function Retry should have comment or be unexported (golint)
    • coldbrew-cli/aws/ecr/client.go
    • Line 16: warning: exported type Client should have comment or be unexported (golint)
    • Line 20: warning: exported function New should have comment or be unexported (golint)
    • Line 26: warning: exported method Client.RetrieveRepository should have comment or be unexported (golint)
    • Line 52: warning: exported method Client.CreateRepository should have comment or be unexported (golint)
    • Line 69: warning: exported method Client.GetDockerLogin should have comment or be unexported (golint)
    • Line 87: warning: exported method Client.DeleteRepository should have comment or be unexported (golint)
    • coldbrew-cli/config/load.go
    • Line 12: warning: exported function Load should have comment or be unexported (golint)
    • Line 48: warning: exported method Config.Defaults should have comment or be unexported (golint)
    • coldbrew-cli/core/aws.go
    • Line 9: warning: exported const AWSTagNameResourceName should have comment (or a comment on this block) or be unexported (golint)
    • Line 13: warning: exported function DefaultTagsForAWSResources should have comment or be unexported (golint)
    • coldbrew-cli/flags/global_flags.go
    • Line 15: warning: exported const GlobalFlagsConfigFileFormatJSON should have comment (or a comment on this block) or be unexported (golint)
    • Line 19: warning: exported type GlobalFlags should have comment or be unexported (golint)
    • Line 31: warning: exported function NewGlobalFlags should have comment or be unexported (golint)
    • Line 83: warning: exported method GlobalFlags.GetAWSClient should have comment or be unexported (golint)
    • Line 87: warning: exported method GlobalFlags.GetAWSRegionAndVPCID should have comment or be unexported (golint)
    • coldbrew-cli/aws/sns/client.go
    • Line 9: warning: exported type Client should have comment or be unexported (golint)
    • Line 13: warning: exported function New should have comment or be unexported (golint)
    • Line 19: warning: exported method Client.PublishToTopic should have comment or be unexported (golint)
    • coldbrew-cli/aws/client.go
    • Line 17: warning: exported type Client should have comment or be unexported (golint)
    • Line 31: warning: exported function NewClient should have comment or be unexported (golint)
    • Line 43: warning: exported method Client.AutoScaling should have comment or be unexported (golint)
    • Line 50: warning: exported method Client.EC2 should have comment or be unexported (golint)
    • Line 57: warning: exported method Client.ECS should have comment or be unexported (golint)
    • Line 64: warning: exported method Client.ELB should have comment or be unexported (golint)
    • Line 71: warning: exported method Client.ECR should have comment or be unexported (golint)
    • Line 78: warning: exported method Client.IAM should have comment or be unexported (golint)
    • Line 85: warning: exported method Client.SNS should have comment or be unexported (golint)
    • Line 92: warning: exported method Client.CloudWatchLogs should have comment or be unexported (golint)
    • coldbrew-cli/aws/utils.go
    • Line 5: warning: exported function GetIAMInstanceProfileNameFromARN should have comment or be unexported (golint)
    • Line 14: warning: exported function GetECSTaskDefinitionFamilyAndRevisionFromARN should have comment or be unexported (golint)
    • Line 23: warning: exported function GetECSContainerInstanceIDFromARN should have comment or be unexported (golint)
    • coldbrew-cli/commands/create/command.go
    • Line 20: warning: exported type Command should have comment or be unexported (golint)
    • Line 26: warning: exported method Command.Init should have comment or be unexported (golint)
    • Line 37: warning: exported method Command.Run should have comment or be unexported (golint)
    • coldbrew-cli/utils/conv/conv.go
    • Line 5: warning: exported function SP should have comment or be unexported (golint)
    • Line 10: warning: exported function S should have comment or be unexported (golint)
    • Line 17: warning: exported function U16P should have comment or be unexported (golint)
    • Line 22: warning: exported function U16 should have comment or be unexported (golint)
    • Line 29: warning: exported function U64P should have comment or be unexported (golint)
    • Line 34: warning: exported function U64 should have comment or be unexported (golint)
    • Line 41: warning: exported function F64 should have comment or be unexported (golint)
    • Line 48: warning: exported function F64P should have comment or be unexported (golint)
    • Line 53: warning: exported function B should have comment or be unexported (golint)
    • Line 60: warning: exported function BP should have comment or be unexported (golint)
    • Line 65: warning: exported function I64 should have comment or be unexported (golint)
    • Line 72: warning: exported function I64S should have comment or be unexported (golint)
    • coldbrew-cli/config/persist.go
    • Line 10: warning: exported method Config.FromJSON should have comment or be unexported (golint)
    • Line 18: warning: exported method Config.FromYAML should have comment or be unexported (golint)
    • Line 26: warning: exported method Config.ToJSON should have comment or be unexported (golint)
    • Line 35: warning: exported method Config.ToJSONWithIndent should have comment or be unexported (golint)
    • Line 44: warning: exported method Config.ToYAML should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign44%

IneffAssign detects ineffectual assignments in Go code.

    • coldbrew-cli/main.go
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 13: warning: cannot find package "." in: (ineffassign)
    • Line 14: warning: cannot find package "." in: (ineffassign)
    • Line 15: warning: cannot find package "." in: (ineffassign)
    • Line 16: warning: cannot find package "." in: (ineffassign)
    • Line 17: warning: cannot find package "." in: (ineffassign)
    • Line 18: warning: cannot find package "." in: (ineffassign)
    • Line 19: warning: cannot find package "." in: (ineffassign)
    • Line 7: warning: could not import github.com/coldbrewcloud/coldbrew-cli/commands (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/commands/clustercreate (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/commands/clusterdelete (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/commands/clusterscale (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/commands/clusterstatus (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/commands/create (invalid package name: "") (ineffassign)
    • Line 13: warning: could not import github.com/coldbrewcloud/coldbrew-cli/commands/delete (invalid package name: "") (ineffassign)
    • Line 14: warning: could not import github.com/coldbrewcloud/coldbrew-cli/commands/deploy (invalid package name: "") (ineffassign)
    • Line 15: warning: could not import github.com/coldbrewcloud/coldbrew-cli/commands/status (invalid package name: "") (ineffassign)
    • Line 16: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 17: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • Line 18: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • Line 19: warning: could not import github.com/d5/cc (invalid package name: "") (ineffassign)
    • coldbrew-cli/aws/ecs/client.go
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (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/aws/session (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/service/ecs (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • Line 106: warning: ek declared but not used (ineffassign)
    • Line 106: warning: ev declared but not used (ineffassign)
    • Line 113: warning: pm declared but not used (ineffassign)
    • Line 194: warning: lb declared but not used (ineffassign)
    • coldbrew-cli/aws/ec2/client.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/aws/session (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/aws/aws-sdk-go/service/ec2 (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • Line 345: warning: tk declared but not used (ineffassign)
    • Line 345: warning: tv declared but not used (ineffassign)
    • coldbrew-cli/aws/ecr/client.go
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 13: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: could not import github.com/aws/aws-sdk-go/aws (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/aws/aws-sdk-go/aws/awserr (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/aws/aws-sdk-go/aws/session (invalid package name: "") (ineffassign)
    • Line 13: warning: could not import github.com/aws/aws-sdk-go/service/ecr (invalid package name: "") (ineffassign)
    • Line 11: warning: "github.com/aws/aws-sdk-go/aws/awserr" imported but not used (ineffassign)
    • coldbrew-cli/commands/create/command.go
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 13: warning: cannot find package "." in: (ineffassign)
    • Line 14: warning: cannot find package "." in: (ineffassign)
    • Line 15: warning: cannot find package "." in: (ineffassign)
    • Line 16: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/config (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 13: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 14: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • Line 15: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 16: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • coldbrew-cli/aws/autoscaling/client.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/aws/session (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/aws/aws-sdk-go/service/autoscaling (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • Line 151: warning: tk declared but not used (ineffassign)
    • Line 151: warning: tv declared but not used (ineffassign)
    • coldbrew-cli/aws/elb/client.go
    • Line 6: warning: cannot find package "." in: (ineffassign)
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 6: warning: could not import github.com/aws/aws-sdk-go/aws (invalid package name: "") (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go/aws/awserr (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/aws/session (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/service/elbv2 (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • Line 253: warning: tk declared but not used (ineffassign)
    • Line 253: warning: tv declared but not used (ineffassign)
    • Line 7: warning: "github.com/aws/aws-sdk-go/aws/awserr" imported but not used (ineffassign)
    • coldbrew-cli/config/validate.go
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 7: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 7: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • coldbrew-cli/core/apps.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • coldbrew-cli/utils/utils.go
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/aws/awserr (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/aws/awserr (invalid package name: "") (ineffassign)
    • coldbrew-cli/commands/deploy/aws_ecs.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 13: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/ecs (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 13: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/ecs (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 13: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • coldbrew-cli/aws/client.go
    • Line 4: warning: cannot find package "." in: (ineffassign)
    • Line 5: warning: cannot find package "." in: (ineffassign)
    • Line 6: warning: cannot find package "." in: (ineffassign)
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 13: warning: cannot find package "." in: (ineffassign)
    • Line 14: warning: cannot find package "." in: (ineffassign)
    • Line 4: warning: could not import github.com/aws/aws-sdk-go/aws (invalid package name: "") (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/aws/credentials (invalid package name: "") (ineffassign)
    • Line 6: warning: could not import github.com/aws/aws-sdk-go/aws/session (invalid package name: "") (ineffassign)
    • Line 7: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/autoscaling (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/ec2 (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/ecr (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/ecs (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/elb (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/iam (invalid package name: "") (ineffassign)
    • Line 13: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/logs (invalid package name: "") (ineffassign)
    • Line 14: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/sns (invalid package name: "") (ineffassign)
    • coldbrew-cli/commands/clustercreate/command.go
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 14: warning: cannot find package "." in: (ineffassign)
    • Line 15: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/ec2 (invalid package name: "") (ineffassign)
    • Line 14: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • Line 15: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • coldbrew-cli/flags/global_flags.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • coldbrew-cli/commands/deploy/command.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/config (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/docker (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/config (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/docker (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • coldbrew-cli/commands/delete/command.go
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 13: warning: cannot find package "." in: (ineffassign)
    • Line 14: warning: cannot find package "." in: (ineffassign)
    • Line 15: warning: cannot find package "." in: (ineffassign)
    • Line 16: warning: cannot find package "." in: (ineffassign)
    • Line 17: warning: cannot find package "." in: (ineffassign)
    • Line 18: warning: cannot find package "." in: (ineffassign)
    • Line 19: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/service/ec2 (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/aws/aws-sdk-go/service/ecs (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/aws/aws-sdk-go/service/elbv2 (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 13: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/ec2 (invalid package name: "") (ineffassign)
    • Line 14: warning: could not import github.com/coldbrewcloud/coldbrew-cli/config (invalid package name: "") (ineffassign)
    • Line 15: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 16: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 17: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • Line 18: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 19: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • coldbrew-cli/aws/sns/client.go
    • Line 4: warning: cannot find package "." in: (ineffassign)
    • Line 5: warning: cannot find package "." in: (ineffassign)
    • Line 6: warning: cannot find package "." in: (ineffassign)
    • Line 4: warning: could not import github.com/aws/aws-sdk-go/aws (invalid package name: "") (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/aws/session (invalid package name: "") (ineffassign)
    • Line 6: warning: could not import github.com/aws/aws-sdk-go/service/sns (invalid package name: "") (ineffassign)
    • coldbrew-cli/docker/client.go
    • Line 6: warning: cannot find package "." in: (ineffassign)
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 6: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 7: warning: could not import github.com/coldbrewcloud/coldbrew-cli/exec (invalid package name: "") (ineffassign)
    • coldbrew-cli/aws/iam/client.go
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (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/aws/awserr (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/aws/aws-sdk-go/aws/session (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/aws/aws-sdk-go/service/iam (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • Line 8: warning: "github.com/aws/aws-sdk-go/aws/awserr" imported but not used (ineffassign)
    • coldbrew-cli/config/persist.go
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 7: warning: could not import gopkg.in/yaml.v2 (invalid package name: "") (ineffassign)
    • Line 19: warning: undeclared name: yaml (ineffassign)
    • Line 45: warning: undeclared name: yaml (ineffassign)
    • Line 7: warning: "gopkg.in/yaml.v2" imported but not used (ineffassign)
    • Line 7: warning: could not import gopkg.in/yaml.v2 (invalid package name: "") (ineffassign)
    • Line 19: warning: undeclared name: yaml (ineffassign)
    • Line 45: warning: undeclared name: yaml (ineffassign)
    • Line 7: warning: "gopkg.in/yaml.v2" imported but not used (ineffassign)
    • coldbrew-cli/commands/status/command.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 13: warning: cannot find package "." in: (ineffassign)
    • Line 14: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/config (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • Line 13: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 14: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • coldbrew-cli/commands/clusterdelete/command.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • coldbrew-cli/commands/clustercreate/aws.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/aws/aws-sdk-go/service/ec2 (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • coldbrew-cli/config/default_config.go
    • Line 4: warning: cannot find package "." in: (ineffassign)
    • Line 5: warning: cannot find package "." in: (ineffassign)
    • Line 4: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 5: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • Line 4: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 5: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • coldbrew-cli/config/load.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • coldbrew-cli/commands/deploy/aws_elb.go
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 7: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/ec2 (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/elb (invalid package name: "") (ineffassign)
    • Line 7: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/ec2 (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws/elb (invalid package name: "") (ineffassign)
    • coldbrew-cli/commands/clusterscale/command.go
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 13: warning: cannot find package "." in: (ineffassign)
    • Line 14: warning: cannot find package "." in: (ineffassign)
    • Line 15: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 13: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • Line 14: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 15: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • coldbrew-cli/aws/logs/client.go
    • Line 4: warning: cannot find package "." in: (ineffassign)
    • Line 5: warning: cannot find package "." in: (ineffassign)
    • Line 6: warning: cannot find package "." in: (ineffassign)
    • Line 4: warning: could not import github.com/aws/aws-sdk-go/aws (invalid package name: "") (ineffassign)
    • Line 5: warning: could not import github.com/aws/aws-sdk-go/aws/session (invalid package name: "") (ineffassign)
    • Line 6: warning: could not import github.com/aws/aws-sdk-go/service/cloudwatchlogs (invalid package name: "") (ineffassign)
    • coldbrew-cli/commands/clusterdelete/aws.go
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 7: warning: could not import github.com/aws/aws-sdk-go/service/autoscaling (invalid package name: "") (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)
    • coldbrew-cli/commands/clusterstatus/command.go
    • Line 8: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 12: warning: cannot find package "." in: (ineffassign)
    • Line 13: warning: cannot find package "." in: (ineffassign)
    • Line 8: warning: could not import github.com/coldbrewcloud/coldbrew-cli/aws (invalid package name: "") (ineffassign)
    • Line 9: warning: could not import github.com/coldbrewcloud/coldbrew-cli/console (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import github.com/coldbrewcloud/coldbrew-cli/core (invalid package name: "") (ineffassign)
    • Line 11: warning: could not import github.com/coldbrewcloud/coldbrew-cli/flags (invalid package name: "") (ineffassign)
    • Line 12: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils (invalid package name: "") (ineffassign)
    • Line 13: warning: could not import github.com/coldbrewcloud/coldbrew-cli/utils/conv (invalid package name: "") (ineffassign)

misspell97%

Misspell Finds commonly misspelled English words